I am using a UltraWebGrid. The user should only be able to select one row so I set the "selecttyperowdefault" to single. The problem arises when the user has a row highlighted. Then while holding down the control key they click the row selector. The row goes inactive(color changes from green to default color). But the row selector is still there. I want the row to remain green because it is still selected. Is there a setting I can change to not allow the row to go back to the default color if it is still selected through the row selector? Or some javascript where I can reactivate the row?
Screen shot of row selected and green.
Still selected but no longer green.
Thanks,
set AllowActivation = "false". Then you will not see the selector.
<
ActivationObject AllowActivation="false" BorderStyle="None">
</ActivationObject>
-Ani