New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.private void grid2_CurrentCellShowingDropDown(object sender, GridCurrentCellShowingDropDownEventArgs e) { GridComboBoxCellRenderer cr = this.grid2.CurrentCell.Renderer as GridComboBoxCellRenderer; if(cr != null) { object o = cr.ListBoxPart.DataSource; cr.ListBoxPart.DataSource = null; cr.ListBoxPart.DataSource = o; } }
>private void grid2_CurrentCellShowingDropDown(object sender, GridCurrentCellShowingDropDownEventArgs e) >{ > GridComboBoxCellRenderer cr = this.grid2.CurrentCell.Renderer as GridComboBoxCellRenderer; > if(cr != null) > { > > object o = cr.ListBoxPart.DataSource; > cr.ListBoxPart.DataSource = null; > cr.ListBoxPart.DataSource = o; > } >} >