or
this.txtCareplanPreview.InsertLineBreak();this.txtCareplanPreview.InsertBookmark("InterventionNotes" + intItem.CCGInterventionId.ToString());this.txtCareplanPreview.Insert("Notes: " + intItem.Description);this.txtCareplanPreview.InsertBookmark("InterventionNotesEnd" + intItem.CCGInterventionId.ToString());this.txtCareplanPreview.InsertLineBreak();

public class MyTreeNode{ public string Display{get;set;} public List<MyTreeNode> childs {get;set;}}<TreeView Name="treeView1" ItemsSource="{Binding Childs}"> <TreeView.ItemTemplate> <HierarchicalDataTemplate ItemsSource="{Binding Childs}"> <StackPanel Orientation="Horizontal" Height="18"> <TextBlock Text="{Binding Display}" /> </StackPanel> </HierarchicalDataTemplate> </TreeView.ItemTemplate></TreeView>
Hi, I am using radgridview in a project. If the column contains fullstop ( '.' character) then the value is not getting displayed for that column though the value is saved in database. Is there any workaround to resolve this issue? Thanks Balaji