public
override
bool
ProcessKeyDown(KeyEventArgs keys)
{
if
(keys.KeyCode == Keys.Down || keys.KeyCode == Keys.Enter)
{
return base
.ProcessKeyDown(keys);
return
base
.ProcessKeyDown(keys);
}
radDock.DocumentManager.DocumentInsertOrder =
DockWindowInsertOrder.ToBack;
I created one RADtreeview and created nodes using RadTreeview Property Builder. For some reasong i set visiblity = false of one node using advanced tab in the property builder. Not i need to show that node in the builder.How i recover that node in the builder.
I can set visibility = true using my code. Not in the design time i am unable to view the node
Me
.gvRoomNights.Columns("ROOM_SORT_ORDER_SITE").Sort(RadSortOrder.Ascending, True)
Dim expression As New GridGroupByExpression("[ROOM_POOL_CD] as [Room Pool] Group By [Room Pool]")
'Dim expression2 As New GridSortField("[ROOM_SORT_ORDER_SITE]")
gvRoomNights.EnableSorting =
True
gvRoomNights.MasterTemplate.EnableSorting =
True
gvRoomNights.MasterTemplate.GroupDescriptors.Add(expression)
Me.gvRoomNights.Columns("ROOM_SORT_ORDER_SITE").Sort(RadSortOrder.Ascending, True)
'gvRoomNights.MasterTemplate.SortDescriptors.Add(expression2)
gvRoomNights.Columns(
"ROOM_POOL_CD").Width = 60
I guess I could group by the ROOM SORT ORDER but I need to change the Groups HEader text to the actual room name. If you can show me that I would be able to get around this. Thanks.