Is there any way to do mass edit in WinGrid? For example change value "Mila" to "Mike" in entire column?
No, you would have to loop through the rows and change it on each cell.
Ok. I need to edit all columns in my grid and all columns have different style as: ColumnStyle.Double, ColumnStyle.CurrencyNonNegative, ColumnStyle.IntegerPositiveWithSpin and several columns with ValueLists. I decided to put editors on top of the grid.
The problem is: what editors should be used for every column? I assume UltraNumericEditor for IntegerPositiveWithSpin, UltraDropDown for ValueLists and UltraMaskedEditor for other numeric values. What is InputMask for different ColumnStyles? Cause I don't want to have different Editors within cell and in batch edit (i.e. different number of digits after point for doubles)