Hi,
I'm currently working in a project tha needs to use a Grid, displaying several columns and rows, and its cells.
So far so good ... but if I told you that I need also to format several cells (not all of them) with differente formats and types, there is a problem.
For an example ... In a grid of 24Rows by 10columns, I need to place:
- 4 DropDownList (along columns 1,3,4,8, in rows 15, 20, 21, 23)
- 10 cells formated as number with Background color red
- another 10 cells formated as text, but with font bold, and size 15;
...... and so on ...
Resuming, I need an interface similar to Excel, wich lets me format each cell (regardless its column or row) in several ways, like type (dropdownlist, radiobutton,....), size (height, width), color (background, forecolor), .....
Is there a way of doing it with UltraWebGrid, or similar products of Infragistics?
Thanks,
Paulo Silva
Please, can anyone help me?
Thankx!
Hi Paulo,
The question you asked would take someone who doesn't work for Infragistics a good deal of time to construct and most people won't/don't have the time (or money) to do this...If no one from Infragistics responds, would you be able to break down your problems into smaller questions which the community can answer?
As a starter, and you'll probably have to explore further, it really looks like almost all of your cells could have something different in them....in this case you're probably going to have to use Column Templating which will allow your cells to have different kinds of controls in them. Likely your entire visible grid will be of templated columns and the data columns that drive them will be hidden...
Look into template columns to see if this can help...
During the InitializeRow event, you can setup each cell in each row and use the Row and Column index's to be able to put dropdown lists in specific cells...