column id in xml

hi,

id just like to ask how to put column id’s through the xml(grid.xml), in your codes ive read, for rows it’s



    

        -1500

        A Time to Kill

        John Grisham

        12.99

        1

        24

        0

        05/01/1998

    





what tag to use and where to place them?

i already know about the function js to do that…i was just thinking how to do it in xml…



i wanted to implement ids for cells…since there isnt and only columns and rows have ids.



thank you for your help.

>>what tag to use and where to place them?


It can be done only if you define all grid configuration in XML


   
         Some
 


>>i wanted to implement ids for cells
For which purpose you need to have IDs for each cell, existing API allows to access cell by row ID and column index as
    grid.cells(i,j)
If you jus� need unique HTML Ids for cells you can enable next mode
    grid.enableCellIds(true);