Me.WebDataGrid1.Behaviors.Filtering.FilteringClientEvents.FilterDropdownDisplayed = "WDG1_FilterDropdownDisplayed"
this.WebDataGrid1.Behaviors.Filtering.FilteringClientEvents.FilterDropdownDisplayed = "WDG1_FilterDropdownDisplayed";
// The client event 'FilterDropdownDisplayed' takes two parameters sender and e // sender is the object which is raising the event // e is the DropDownEventArgs function WDG1_FilterDropdownDisplayed(sender, e) { //Gets the behavior object of Dropdown var dropDown = e.get_dropDownBehavior(); //Returns true if the Dropdown is child var child = dropDown.get_dropDownIsChild(); window.status = "Filter Dropdown displayed" }