Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
Looks like no row is selected
posted

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,

  • 820
    posted

    set AllowActivation = "false". Then you will not see the selector.

     

    <

     

    ActivationObject AllowActivation="false" BorderStyle="None">

     

     

    </ActivationObject>

    -Ani