I would like to have button column in UltraGrid control. How to do it ?
UltraGridColumn exposes a Style property, the type for which is an enum; there are constants you can assign to the property like 'Button' or 'EditButton'. The control fires the 'ClickCellButton' event when the user clicks the button.
Thank you. Its working