or
<telerik:RadSiteMap runat="server" ID="RadSiteMapCategoryPath" OnNodeDataBound="OnNodeDataBound_CategoryPath" MaxDataBindDepth="1"> <LevelSettings> <telerik:SiteMapLevelSetting Level="0" Layout="Flow" SeparatorText="--"> <ListLayout /> </telerik:SiteMapLevelSetting> </LevelSettings> </telerik:RadSiteMap> <telerik:RadSiteMap runat="server" ID="RadSiteMapCategoryOwerview" OnNodeDataBound="OnNodeDataBound_CategoryOwerview" MaxDataBindDepth="1"> <LevelSettings> <telerik:SiteMapLevelSetting Level="0"> <ListLayout RepeatColumns="3" AlignRows="true" /> </telerik:SiteMapLevelSetting> </LevelSettings> </telerik:RadSiteMap> var cats1 = new List<Categories>(); this.ModifyWorkflowControlReadOnly(a => { cats1 = Categories.GetAll(a); }); RadSiteMapCategoryOwerview.DataTextField = "Name"; RadSiteMapCategoryOwerview.DataValueField = "ID"; RadSiteMapCategoryOwerview.DataFieldID = "ID"; RadSiteMapCategoryOwerview.DataFieldParentID = "ID_Category_Parent"; RadSiteMapCategoryOwerview.DataSource = cats1; RadSiteMapCategoryOwerview.DataBind(); ------------------- var cats2 = new List<Categories>(); this.ModifyWorkflowControlReadOnly(a => { cats2 = Categories.GetAll(a); }); RadSiteMapCategoryPath.Dispose(); // add start item Categories item = new Categories(); item.Name = "Hautkategorien"; cats2.Add(item); RadSiteMapCategoryPath.DataTextField = "Name"; RadSiteMapCategoryPath.DataValueField = "ID"; RadSiteMapCategoryPath.DataFieldID = "ID"; RadSiteMapCategoryPath.DataFieldParentID = "ID_Category_Parent"; RadSiteMapCategoryPath.DataSource = cats2; RadSiteMapCategoryPath.DataBind(); Please note that We had move a website from window server 2003 - iis 6 to window server 2008 R2 (64 bit OS) - iis 7. Now, we get a popup with this error as mentioned below:
r.a.d.upload Ajax callback error. Source url was not found:
/Telerik.RadUploadProgressHandler.aspx?RadUrid=784e4743-7fcf-4064-afd8-7020d8f51a0f
Did you register the RadUploadProgressHandler in web.config?Please, see the help for more details: RadUpload 2.0 - Using r.a.d.upload - Configuration - RadUploadProgressHandler.
We have changed the web.config as mentioned in the link below, still the error message shows up
http://www.telerik.com/help/aspnet-ajax/upload-configuration.html
Please do let us know what else needs to be done.
Regards,
Debu
<Columns>
<telerik:GridTemplateColumn HeaderText="Support" UniqueName="SupportUsed"> <ItemTemplate> <telerik:RadComboBox ID="ddlSupportUsed" runat="server" EmptyMessage="All Types" OnClientSelectedIndexChanging="IndexChanged2" Width="200px" OnClientDropDownClosed="onDropDownClosing" > <ItemTemplate> <div onclick="StopPropagation(event)" >
<asp:CheckBox runat="server" ID="chk1" onclick="onCheckBoxClick(this)"/> </div> </ItemTemplate> </telerik:RadComboBox> </ItemTemplate> </telerik:GridTemplateColumn> </Columns>
Here is how my grid layout looks like. I want to access grid rowindex of grid row when I click checkbox within dropdown in grid. How can I achieve this?
Thanks
<telerik:RadComboBox ID="rcbContractNumber" Height="150px" runat="server" Width="400px" DataSourceID="sqlContracts" DataTextField="Name" DataValueField="ContractNumber" AllowCustomText="true" MarkFirstMatch="true" OnClientSelectedIndexChanging="LoadContractServices" OnClientLoad="rcbContractNumber_Load" ></telerik:RadComboBox>