Hi,
I am binding html content to GridHTMLEditorColumn in the radgrid.
aspx :
I would like to show only 100 char's for GridHTMLEditorColumn.
example : Miss X, please identify who is the most adapt in using the system.Then prepare for an online demonstration during...
If I am using SearchGrid_ItemDataBound then it's not working...
Please help me on this.. .Thanks
I am binding html content to GridHTMLEditorColumn in the radgrid.
aspx :
<telerik:GridHTMLEditorColumn ShowSortIcon="true" SortExpression="Message" FilterControlAltText="Filter Message column" DataField="Message" FilterControlWidth="250px" DataType="System.String" UniqueName="Message" HeaderText="Email Message"> </telerik:GridHTMLEditorColumn>I would like to show only 100 char's for GridHTMLEditorColumn.
example : Miss X, please identify who is the most adapt in using the system.Then prepare for an online demonstration during...
If I am using SearchGrid_ItemDataBound then it's not working...
If TypeOf e.Item Is GridDataItem Then Dim dataBoundItem As GridDataItem = TryCast(e.Item, GridDataItem) If dataBoundItem("Message").Text.Length > 100 Then dataBoundItem("Message").Text = dataBoundItem("Message").Text.Substring(0, 100) & "..." End If End IfPlease help me on this.. .Thanks