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
275
Cell not update when value select from ValueList
posted

Hi,

i am using UltraWebGrid. i have added a valuelist on a cell.
        ValueList    andOrValueList = new     ValueList();
        andOrValueList.ValueListItems.Add("And");
        andOrValueList.ValueListItems.Add("Or");
        e.Layout.Bands[0].Columns[0].ValueList = andOrValueList;

Now user can select a value from ValueList on clicking cell.

Issue:

when i select a value from valueList dropdown then ValueList is display on cell and cell is not updated. when i clicked on another cell then cell update.

i want that when i select a value from ValueList then cell is automatically update and valuelist should be hide.

please give me the suggestion that how can i achieve this functionality. its very urgent for me.

 

Thanks & Regard's

Sachin Kumar

 

 

Parents
  • 255
    posted

    Sachin,

    I think this might be from the event that you are using.  Try using the Private Sub UltraWebGrid_UpdateCell.  I might not understand what you are asking, just an idea. 

Reply Children