How can i assign UltraButton to UltraGrid Cell
you can use the following code to enable buttons for all cells of a column
this.customersUltraGrid.DisplayLayout.Bands[0].Columns[0].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.Button;
Then, there's a ClickCellButton event that you can handle
Just a quick question about the button style.. I am developing a touch screen app, you think that buttons should be activated with the finger?
Yes, you are right in case of assigning through the Style...But my requirement is i should have the name of the Control differently(namely lkp_Customer) this would cause some action.....If i am able to Set the Control to the Cell the way we do EditorControl i can do...
if not, i can assign UltraButton to Grid Cell...how can i name the Button when i set columnstyle as button