Is it possible to edit column titles(caption) in runtime?
The reason is, I want to allow one users to save definitions of the column titles, and another user
to load this definitions to his grid, and see it.
Hi,
As far as I know a user cannot "edit" the caption at runtime but you can change it programmatically so you could give the user a method to enter a new caption and then set it using code like this:
ultraGrid1.DisplayLayout.Bands[yourBand].Columns[yourColumn].Header.Caption = "New Caption";
Andy.