Hi,
I want to create a control which is derived from RadGrid. I want to add a RadTextBox and a RadButton above the Grid and want to
implement this in the derived class.
Normally, I would create both controls in CreateChildControls and Render them at the correct location in RenderContents.
Unfortunately, I get the following error message in RenderContents when calling
Thanks!
I want to create a control which is derived from RadGrid. I want to add a RadTextBox and a RadButton above the Grid and want to
implement this in the derived class.
Normally, I would create both controls in CreateChildControls and Render them at the correct location in RenderContents.
Unfortunately, I get the following error message in RenderContents when calling
radTextBox.RenderControl(writer);
Script control 'radTextBox' is not a registered script control. Script controls must be registered using RegisterScriptControl() before calling RegisterScriptDescriptors().
Parameter name: scriptControl
I don't wan't to create a new userControl with my two controls and the RadGrid. Could you please tell me how I can add child controls to a control derived from RadGrid?Thanks!