i have a boundedColumn In my telerik RadGrid As string Type -> some xml codes ...
how can i show that column (raw xml) in that RadGrid without rendering?
my problems :
my grid direction is right to left for some reason...
so at first i should change the xml direction like below :

                            <telerik:GridBoundColumn DataField="Settings" FilterControlAltText="Filter Settings column" DataFormatString="<span style='direction:ltr;'>{0}</span>"
                                HeaderText="Settings" SortExpression="Settings" 
                                UniqueName="Settings" FilterImageToolTip="Filter" HtmlEncode="false">
                                <HeaderStyle HorizontalAlign="Right" VerticalAlign="Middle" />
                                <ItemStyle HorizontalAlign="Left" VerticalAlign="Middle" />
                            </telerik:GridBoundColumn>  

at this time we have ltr xml string in grid ...
after that i changed the HtmlEncode="TRUE"
but by doing this i lose ltr direction , because of this property...
so i converted HtmlEncode to "false" again...
i figured out i can use <xmp> or <pre> elements...
but with <xmp> i have some repalcement of < and > in grid and also it has been depricated ...
and with i should change all < to &lt; and > to &gt; in my database ...
but sometimes i use my database directly and do n't want to do these changes !
any idea ?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Add handler for onItemDataBound for your Grid

<telerik:RadGrid ID="RadGrid1" runat="server" AllowFilteringByColumn="True"
            AllowSorting="True" PageSize="50" ShowFooter="True" AllowPaging="True" 
            AutoGenerateColumns="False" GridLines="None" ShowStatusBar="true" 
                onitemdatabound="RadGrid1_ItemDataBound">

And codebehind:

 protected void RadGrid1_ItemDataBound(object sender, Telerik.Web.UI.GridItemEventArgs e)
 {
            if (e.Item is GridDataItem)
            {
                GridDataItem item = e.Item as GridDataItem;
                item["XmlColumn1"].Text = Server.HtmlEncode(item["XmlColumn1"].Text);
                item["XmlColumn2"].Text = Server.HtmlEncode(item["XmlColumn2"].Text);
            }

  }

Should do the trick.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.