Admission:
I'm a brand new user of the product line and decided to start off with Prometheus rather than using the established RAD product line -- that may well have been a mistake.
Setup:
RadGrid in primary ASPX page (UpdateContent.aspx) and is populated using a simple SQLServer 2005 query. The RadGrid Select event calls an ASCX file (ContentEditControl.ascx) which contains a couple of text boxes and a RadEditor. I want to edit the grid row dataitems using the web control.
I understand that the update procedure must be part of UpdateContent.aspx (where the RadGrid resides).
What works:
1. The ContentEditControl textboxes and RadEditor are populated with the correct values.
2. Values can be edited.
3. The Update button triggers properly and can be trapped in UpdateContent.ASPX.RadGrid1_ItemCommand
From there, the next steps are to obtain the new values and update the database.
What I could use some help with:
1. I can not see how to use FindControl to locate the ContentEditControl's textbox and RadEditor controls and text values.
Could you provide a quick VB example?
2. Example content obtained from the RadEditor includes lines like: <h5><p>TextHere</p></h5>
Is there an integrated method to cleaning that up or do I need to devise one?
Thank you.