or
While dragging the node from radtreeview into another control cursor becomes NO cursor. We want to change the cursor type.
Please provide us the solution.
Private Sub Process_GroupByShipTo_CheckedChanged()
If Not bControlsPopulated Then
Exit Sub
End If
If rbGroupByShipTo.Checked Then
rgvItems.EnableGrouping = True
rgvItems.ShowGroupedColumns = True
Else
rgvItems.EnableGrouping = False
rgvItems.ShowGroupedColumns = False
End If
End Sub
Private Sub Process_GroupByShipTo_CheckedChanged()
If Not bControlsPopulated Then
Exit Sub
End If
If rbGroupByShipTo.Checked Then
rgvItems.EnableGrouping = True
rgvItems.ShowGroupedColumns = True
rgvItems.DataSource = Nothing
rgvItems.Rows.Clear()
PopulateDataGrid()
Else
rgvItems.EnableGrouping = False
rgvItems.ShowGroupedColumns = False
End If
End Sub
function
CollapseMenu() {
//close the menu
var
menu = $find(
"<%= mnuActions.ClientID %>"
);
var
topMenuItem = menu.get_items().getItem(0);
topMenuItem.close();
topMenuItem.Blur();
}
RadPageView1.SelectedPage = tabAutomation