Is it possible to insert an unbound button column in a WHDG like it is for an UltraWebGrid?
Thanks,
Steve
Hello Steve,
Let me know if you have furher questions.
At this time we have “UnboundCheckBoxField” type column that can be used to display unbound check boxes for every row in the column and in the column header.
If you want to insert a button (an asp:Button or HTML input button element) in the grid you can use template field and put this control in it - http://help.infragistics.com/Help/NetAdvantage/ASPNET/2011.1/CLR4.0/html/WebHierarchiclaDataGrid_Column_Templates.html
http://help.infragistics.com/Help/NetAdvantage/ASPNET/2011.1/CLR4.0/html/WebHierarchicalDataGrid_Using_Item_Template.html
Let me know if you have different requirement or any other questions.
Hi Steve,
We do not have an unbound button column. We have an unbound column, which can display data that is not in the actual data soure, and a template data field, which can display anything. It sounds like you need the latter. Then you'll need to set the ItemTemplate to a class that implements ITemplate and in its InstantiateIn, you should make a button that does what you need.
regards,David Young