I'm relatively new to Telerik, ASP.NET and VB so please bear with me.
I'm trying to build an admin page which will allow the user to change various properties drawn from a database. I've got it working fine as far as getting/setting values to textboxes and now I'm trying to substitute in more specific UI elements such as color pickers and numeric text boxes.
As it stands the admin page uses a control, each control containing some table markup and a Placeholder element. My thought was that I could attach correct UI widget based on the type of the control, but I can't get this to work.
In Page_Prerender of the control, the widgets are created and attached to the placeholder. My problem comes in getting the changed values from these widgets when the user selects save. It doesn't need to be as each setting is changed.
How should I go about getting these values back out? I tried retrieving the value by getting the widget from the Placeholder's controls collection, but it only seems to include elements place in the placeholder in the markup, not those added in the code-behind.
Thank you for any help you can provide.
I'm trying to build an admin page which will allow the user to change various properties drawn from a database. I've got it working fine as far as getting/setting values to textboxes and now I'm trying to substitute in more specific UI elements such as color pickers and numeric text boxes.
As it stands the admin page uses a control, each control containing some table markup and a Placeholder element. My thought was that I could attach correct UI widget based on the type of the control, but I can't get this to work.
In Page_Prerender of the control, the widgets are created and attached to the placeholder. My problem comes in getting the changed values from these widgets when the user selects save. It doesn't need to be as each setting is changed.
How should I go about getting these values back out? I tried retrieving the value by getting the widget from the Placeholder's controls collection, but it only seems to include elements place in the placeholder in the markup, not those added in the code-behind.
Thank you for any help you can provide.