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 < and > to > in my database ...
but sometimes i use my database directly and do n't want to do these changes !
any idea ?