TTIWDBAdvWebGrid column title

Using <P> tag for centering column title in Title property of grid column breaks javascript in browser (missing ; before statement error).

I am using this string for title:
<B>Description</B>
and it works fine.
When I try :
<P align="center"><B>Description</B></P>

it gives error message in console.


Can you please try setting Grid.Columns[].ColumnHeaderAlignment to taCenter instead of using the align="center" attribute?

Thank you, that fixed the problem. Anyway, it should not hang the client if I chose to use HTML instead.