Hi,
I have a radgrid in an radajaxpanel and in the grids formtemplate I have an editor from XStandard.com (active-x editor).
If I remove the ajaxpanel the update works and I get the text from the editor.
But if I use the ajaxpanel the value is allways blank!
What can be the reason for that?
Regards,
Mattias
I have a radgrid in an radajaxpanel and in the grids formtemplate I have an editor from XStandard.com (active-x editor).
If I remove the ajaxpanel the update works and I get the text from the editor.
But if I use the ajaxpanel the value is allways blank!
What can be the reason for that?
Regards,
Mattias
| <telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" LoadingPanelID="radAjaxLoadingPanel"> |
| <telerik:RadGrid ID="radGridMenus" runat="server" AllowPaging="false" CssClass="radgrid" |
| ... |
| <EditFormSettings EditFormType="Template"> |
| <FormTemplate> |
| <xs:XHTMLEditor ID="xhtmlEditorPreamble" runat="server" OnLoad="Editor_Load" /> |
| ... |
| protected void radGridMenus_UpdateCommand(object source, GridCommandEventArgs e) |
| { |
| GridEditFormItem gridItem = e.Item as GridEditFormItem; |
| ... |
| content.Preamble = ((XStandard.WebForms.XHTMLEditor)gridItem.FindControl("xhtmlEditorPreamble")).Value.Trim(); ... |
| } |