Hello everybody,
I already searched for the solution of my problem but did not find anything to work. I Build a RadGrid an bind it to a SQL Datasource. Now I want to fill the Dropdownlists in the Radgrid with values from a different code behind stored procedure. Somehow I can not access the two DropDownLists from my code behind. I would be very thankful if someone could help me out. Here is my code:
Thank you very much,
Max
I already searched for the solution of my problem but did not find anything to work. I Build a RadGrid an bind it to a SQL Datasource. Now I want to fill the Dropdownlists in the Radgrid with values from a different code behind stored procedure. Somehow I can not access the two DropDownLists from my code behind. I would be very thankful if someone could help me out. Here is my code:
<telerik:RadGrid runat="server" ID="gridFktWipoHague" Culture="de-DE"> <MasterTableView> <Columns> <telerik:GridBoundColumn DataField="LAND_KZ" ReadOnly="true"> </telerik:GridBoundColumn> <telerik:GridTemplateColumn DataField="PMMA_Add"> <EditItemTemplate> <telerik:RadDropDownList runat="server" ID="PMMA_Add_DropDown"> </telerik:RadDropDownList> </EditItemTemplate> </telerik:GridTemplateColumn> <telerik:GridDateTimeColumn DataField="HAGUE_DATUM"> </telerik:GridDateTimeColumn> <telerik:GridTemplateColumn> <EditItemTemplate> <telerik:RadDropDownList runat="server" ID="HAGUE_Add_DropDown"> </telerik:RadDropDownList> </EditItemTemplate> </telerik:GridTemplateColumn> <telerik:GridBoundColumn DataField="HAGUE_DELETE"> </telerik:GridBoundColumn> <telerik:GridBoundColumn ReadOnly="true" DataField="Counter_pm"> </telerik:GridBoundColumn> <telerik:GridBoundColumn ReadOnly="true" DataField="Counter_ps"> </telerik:GridBoundColumn> <telerik:GridCheckBoxColumn DataField="TMVIEW"> </telerik:GridCheckBoxColumn> </Columns> </MasterTableView> <ExportSettings> <Pdf PageWidth=""> </Pdf> </ExportSettings></telerik:RadGrid>Thank you very much,
Max