How do i create a hyperlink column in the heirarchacical ultragrid? I tried the intialize row but it only creates it for the parent row not the child.
Thanks
Ok I got solution for this, the code should be like this :
<ig:TemplateDataField Header-Text="" Key="iRating5" Width="58px"> <HeaderTemplate> <img runat="server" alt="" src="Images/rating5.png" /> </HeaderTemplate> </ig:TemplateDataField>
I want to show only image at the header column. I am using following code but not getting exact solution.
<ig:TemplateDataField Header-Text="" Key="iRating6" Width="58px"> <ItemTemplate> <img runat="server" alt="" src="Images/rating6.png" /> </ItemTemplate> </ig:TemplateDataField>
I created a hyperlink templat column on the child in the design view. This was not what I wanted to do but it works.
Thanks but that's not much help.
I know it has a rows property I just do not know how to code for the child value.
I need a example on how to do it or point to a tutorial. I do not see anything on this in the samples.
Hello rydavis,
Each UltraGridRow has a Rows property which returns its collection of child UltraGridRows. You can potentially use that to resolve your issue.