Hi,
I have a hierarchy XamWebGrid and I would like to know if it is possible to implement this feature on the child only. If not, then what is my alternative to achieve this? Thanks!
Off each ColumnLayout object is an AddNewRowSettings object with a property named AllowAddNewRow. You would need to set the AllowAddNewRow to .None for the parent column layout and .Top for the child column layout.
You could also set the Grid's AddNewRowSettings .AllowAddNewRow to .None and turn it on in the child columnLayout.
Thanks for your reply.
By implementing the AddNewRow feature, every row on grid has the triangular. Since I have a hierarchy XamWebGrid, it looks like every parent has a child where in fact some don't. Is there a way to hide the triangular for those parents that do not have children or what is my alternative? Again, thanks for your help!