I'm trying to right-align a column in my WDG. I've been through the Infragistics tutorials, so I know that I need to added a new CSS style as such...
tbody > tr > td.ColumnRight
{
text-align: right;
}
Then on my column apply CssStyle="ColumnRight"
However, my WDG is on a usercontrol which is dynamically loaded.
When the page comes up the right-align has not taken hold.
It does not work until you refresh the page (F5) - but this is undesirable, really need the style in place upon first-load.
Its obviously a problem with the dynamic loading, but any ideas how to fix it?
Any help much appreciated!