Hello,
i am adding a resource in radschedular in which the property of resource AllowMultiplevalues is true. Now i want to ask that is there any way to find the particular values which are selected by the user and on which event we can do this??
i am adding a resource in radschedular in which the property of resource AllowMultiplevalues is true. Now i want to ask that is there any way to find the particular values which are selected by the user and on which event we can do this??
<telerik:RadScheduler ID="RadScheduler1" runat="server" DataDescriptionField="abc_description" DataEndField="schedule_todate" DataKeyField="abc_id" DataRecurrenceField="RecData" DataRecurrenceParentKeyField="RecParent" DataSourceID="SqlDS_abc" DataStartField="schedule_fromdate" DataSubjectField="abc_title" EnableDescriptionField="True" SelectedView="MonthView" > <ResourceTypes> <telerik:ResourceType DataSourceID="SqlDS_DBGroup" ForeignKeyField="dbGrp_id" KeyField="dbGrp_id" Name="DB_Group" TextField="dbgrp_name" AllowMultipleValues="true" /> </ResourceTypes> </telerik:RadScheduler> <asp:SqlDataSource ID="SqlDS_DBGroup" runat="server" ConnectionString="<%$ ConnectionStrings:DB_LiveConnectionString %>" DeleteCommand="DELETE FROM ref.abc WHERE (abc_id= @abc_id)" InsertCommand="INSERT INTO ref.abc(dbgrp_name, schedule_fromdate, schedule_todate, abc_description, RecParent, RecData, abc_type_id,user_fkid, grp_fkid) VALUES (@dbgrp_name, @schedule_fromdate, @schedule_todate, @abc_description, @RecParent, @RecData, ISNULL(@abc_type_id,-1),@user_fkid,ISNULL(@grp_fkid,-1))" SelectCommand="DECLARE @return_value int EXEC @return_value = [dbo].[selectActivity] @user_fkid" >