or
<telerik:RadEditor ID="reComment" runat="server" EditModes="Design" ToolbarMode="ShowOnFocus" ToolsWidth="170px" Width="412px" Height="72px"> <Tools> <telerik:EditorToolGroup> <telerik:EditorTool Name="Bold" /> <telerik:EditorTool Name="Italic" /> <telerik:EditorTool Name="StrikeThrough" /> <telerik:EditorTool Name="Underline" /> <telerik:EditorTool Name="InsertUnorderedList" /> <telerik:EditorTool Name="InsertOrderedList" /> </telerik:EditorToolGroup> </Tools> </telerik:RadEditor>
<asp:Button ID="btSubmit" runat="server" Text="Valider" OnClick="btSubmit_Click" />code:
if (reComment.Content.Trim() != "") <<<<<<<< HERE RETURNING "EMPTY" {
The reComments is inside a Panel and is being declared inside onInit
protected override void OnInit(EventArgs e) { Page.Init += delegate(object sender, EventArgs e_Init) { reComment = this.FindControl("reComment") as RadEditor;
thanks

For Each item As GridBatchEditingCommand In e.Commands
Dim editedRow = item
iRowIndex = ?
iColIndex = ?
End Select
Next


<telerik:RadToolTip ID="RadToolTip1" runat="server" Modal="true" ShowEvent="FromCode" Position="Center" RelativeTo="Element" TargetControlID="grdItemSplit" HideEvent="FromCode" Title="Add Item To Split" ShowCallout="true" RenderInPageRoot="true">more here...</telerik:RadToolTip><script type="text/javascript"> //<![CDATA[ function onRowDropping(sender, args) { showToolTip(); args.set_cancel(true); } function showToolTip() { var tooltip = $find("<%=RadToolTip1.ClientID%>"); window.setTimeout(function () { tooltip.show(); }, 1); } function CloseToolTip() { var toolTip = $find('RadToolTip1'); toolTip.hide(); } function OnCommand(sender, args) { if (args.get_commandName() == "Moveit") { args.set_cancel(true); showToolTip(); } } //]]> </script>