Hi!
I need to format string values in order to put a constant string after the value such as "Employee Name: {0}" where {0} is the full name of the employee.
The thing is that I use a UltraDataSource to format the string values, but I think there is a better way to do it.
I used a UltraCalcManager to concatenate strings, but its slower than the UltraDataSource.
Any ideas?
Thanks, Luciano.
I would edit the cell during the InitializeRow event.
e.g.
{
}
The thing is that the grid have 4 levels or bands, a lot of rows, and I have to format all the cells. Your solution cound take a while. And working with events could take down performance.
I'm look for something like string.Format() method but from the grid.
Thanks.
You could also do this using a DataFilter.