3.2.0

Toggling Checkbox display

Trying to add a toggle for the presentation of checkboxes or not...

It isnt working...

anyone have any idea?


function multiPass()
{
cSetting = obj.getSelectionMode();
alert(cSetting);
if (cSetting="rows")
{
obj.setSelectionMode("multi-row-marker");
obj.refresh();
}
else
{
obj.setSelectionMode("rows");
obj.refresh();
}
}
Desmund
February 20,
Still not working without doing a complete reload of the page...what am I not understanding about refresh?
Desmund
February 22,
Desmund,

I was able to set selection mode to multi row marker dynamically. But going back to row was an issue.

I notice that you specify "rows" - is that a valid choice? I remember 'single-row', not rows.
Joel
February 23,

This topic is archived.

See also:


Back to support forum