Is it possible to set background color of a cell via XML?

Is it possible to set the background color of a cell via XML

Example:





31



I have the colors stored in a database and want to load them with XML or is there another chance to make that

Thanks

you can use userData sections


b1

some2

In this sample userdata “a1” attached to grid itself and can be obtained by
grid.getUserData("",“a1”);

userdata “some1” attached only to row “some”
grid.getUserData(“some”,“some1”);


You can store any info in userData sections ( there may be unlimited number of them ) and use it in any way after XML loading.