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();
}
}
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,