<telerik:RadHtmlField runat="server" DisplayWidth="100%" ID="docAbstract" FieldName="ACAbstract" InputFieldLabel="Article content" AllowSpecialTags="True" AllowScripts="True"/> var entity= _container.someting.First(); Telerik.Web.UI.RadEditor editor = new Telerik.Web.UI.RadEditor(); editor.LoadRtfContent(entity.rtfText); var text = editor.Content.ToString();hi dear telerik team :
my radgrid column like below :
<telerik:GridTemplateColumn FilterControlAltText="Filter TemplateColumn_Benefit" DataField="Benefit" HeaderText="Benefit" UniqueName="TemplateColumn_Benefit" FilterImageToolTip="Filter"> <ItemTemplate> <asp:Label ID="lblBenefitInsideGrd" runat="server" Font-Size="11px" Text='<%# (bool)Convert.IsDBNull(Eval("Benefit")) ? "<span class=\"lblInsideGrd\">Empty</span>" : String.Format("{0:#,0 Dollar;#,0- Dollar}", Eval("Benefit")) %>'></asp:Label> </ItemTemplate> <HeaderStyle HorizontalAlign="Center" VerticalAlign="Middle" Width="60px" /> <ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" Width="60px" /> </telerik:GridTemplateColumn> how can i String.Format(reformat) Sum result in footer for this template column ?
mean i want something like {0:#,0 Dollar;#,0- Dollar} in output...
best regards
thanks in advance
I have a real problem for my application. Hopefully it is just a setting I overlooked. If I select a non-root item and collapse the branch it is on, it remains selected even though I selected another visible item without the using the shift or control keys. I have selected an item and collapsed its branch. Then I selected another item. When I expand the branch with the previously selected item, it is still selected. Visible selections are cleared with new selections, so hidden selections should be cleared with new selections.
What am I missing?
Thanks,
Paul
<telerik:RadGrid ID="grdCompCliente" runat="server" Width="100%" Height="100px" OnItemDataBound="grdCompCliente_ItemDataBound1" AutoGenerateColumns ="false" ShowGroupPanel="true"> <MasterTableView AllowMultiColumnSorting="True" > <NestedViewTemplate> <asp:Panel runat="server" ID="InnerContainer" Visible="false"> <telerik:RadGrid runat="server" ID="ID_Subasta" > <MasterTableView> <Columns> <telerik:GridBoundColumn DataField="Id" HeaderText="ID"> </telerik:GridBoundColumn> </Columns> </MasterTableView> </telerik:RadGrid> </asp:Panel> </NestedViewTemplate> </MasterTableView> </telerik:RadGrid>