Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
70
WebHierarchicalDataGrid templates
posted

People

I have a infragistics WebHierachicalDataGrid that I want to have images and clickable links in parent and child rows. The grid is late bound to a dataset so I cannot use any of the designer tools to implement templates. I am struggling to find out how to implement them.

Are there any examples. All the examples seem to be implemented with odbc etc data sources as soon as you use a data set implementing infragistics seems to become a nightmare.

Parents
No Data
Reply
  • 3147
    Suggested Answer
    posted

    Hi,

    You can simply use TemplateDataFields and put whatever content you need in the ItemTemplate:

    <ig:TemplateDataField Key="TemplateField_0">
          <Header Text="TemplateField_0" />
          <ItemTemplate>                    
                Put images, links, etc. here.
          </ItemTemplate>
    </ig:TemplateDataField>

Children
No Data