Hello,
I'm having a formating issue displaying my hierarchal grid in while my Grid is in insert mode.
When i switch my grid to insert mode i hide the ExpandColun.
However, this causes my insert template (a user control) to be rendered in the second column of my grid and the first column has a large empty space.
Is there something i can do to force my user control to span across all columns?
The main goal i'm trying to achieve is to disable expanding of rows while the user is inserting an item.
Thanks.
I'm having a formating issue displaying my hierarchal grid in while my Grid is in insert mode.
When i switch my grid to insert mode i hide the ExpandColun.
| protected void _orgGrid_ItemCreated(object sender, GridItemEventArgs e) |
| { |
| if (e.Item is GridEditableItem && e.Item.IsInEditMode) |
| { |
| if (editItem.OwnerTableView.IsItemInserted) |
| { |
| _orgGrid.MasterTableView.GetColumn("ExpandColumn").Display = false; |
| } |
| } |
Is there something i can do to force my user control to span across all columns?
The main goal i'm trying to achieve is to disable expanding of rows while the user is inserting an item.
Thanks.