3.2.0

How can I set color and alignment in Footer cells?

I'm display a footer using 2.0.2 and would like to set color and alignemnt to each cell. Any examples of this?

many thanks
Max
Max Tomlinson
July 13,
Hi,

Take a look at this:
http://www.activewidgets.com/javascript.forum.15808.2/unable-to-format-footer-like.html
Flaffer
July 15,
Use combination of .aw-footer-... and .aw-column-... selectors -

.aw-footer-0 .aw-column-1 {background: red}

or, using script,

// AW.UI.Grid
obj.getFooterTemplate(2).setStyle("background", "blue");

// AW.Grid.Extended
obj.getFooterTemplate(2, 0).setStyle("background", "blue");


Alex (ActiveWidgets)
July 16,
many thanks guys--this did the trick
Max Tomlinson
July 16,

This topic is archived.

See also:


Back to support forum