Hello
In my application resources are not saved in the database from the ganttview.
Task table structure is described below
CREATE TABLE [dbo].[dbTasks]( [TaskID] [uniqueidentifier] NOT NULL, [ProjectKey] [int] NULL, [TaskName] [nvarchar](50) NULL, [TaskStartTime] [datetime] NULL, [TaskDuration] [timestamp] NULL, [ParentTaskID] [uniqueidentifier] NULL, [TaskPercentComplete] [int] NULL, [AllProperties] [varbinary](max) NULL, [Milestone] [bit] NULL, [Resources] [nvarchar](max) NULL, [TaskDuration3] [nvarchar](50) NULL, CONSTRAINT [PK_dbTasks_1] PRIMARY KEY CLUSTERED ( [TaskID] ASC)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]) ON [PRIMARY]
Looking forward for the reply.
Regards
jeni
Hello jeni,
Thank you for your patience!
How are you trying to save these resources? Did you try with dataadapter and the Update() method?
Hello,
I am checking about the progress of this issue. Please let me know If you need any further assistance on this.
I believe that you should have the resources you are trying to save as owners in the calendarInfo.
You should have the information in the CalendarInfo as well in order to get the desired behavior.
Hello Boris
I have included the DB script too in the previous attachment. which would populate the combobox.
What should I do in this sample? The ComboEditor is empty, the button does not execute anything in the UI. What are the steps to reproduce the issue?
Please have a look on the attached sample where the resources are not saved.
Thanks in advance