I have a multiline grid and when I pass the xml structure ba

I have a multiline grid and when I pass the xml structure back down to the client, I’m coding the xml structure so that I use html tags to create a table and then I insert that html table into a cell on my grid. My issue is that when you try to select the cell to highlight it, it doesn’t highlight the cell. How can I get around this? I need to pass the xml structure down with the html table for data formatting purposes.



thanks.

While grid can render any HTML inside its cells, usage of table as content may break some logic. Grid will not be able to differ the main data table from inline data tables , which can cause same problem as in yout case.
I can suggest some code mofication, which will resolve issue with row selection in your case, but still there will be other use-cases where problem may occurs.
Can you provide more detail about necessary formating, the table may be replaced with div|span based content in mose cases.