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
3914
UltraCombo in Grid cell shows CheckedRows is null
posted

Hi,

I have an UltraCombo as my Grid cell's EditorComponent with ability to multi-select from the list.

It works great when I select multiple rows, etc.

The problem is when I programmatically set the a value via the grid cell. It does not seem to know what I set it until I click on the drop down. I tried to refresh/invalidate/update the UltraCombo in vain.

What am I doing wrong? Or what more do I need to do to make it listen to my edits to the grid cell.

Thanks

Sangeetha

Parents
No Data
Reply
  • 3914
    Suggested Answer
    posted

    Hi,

    Never mind. Found a workaround. I just directly iterate through the dropdown rows and set it selected

    row.Cells["Selected"].Value = "true";

    Thanks

    Sangeetha

Children