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
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.
UltraWebGrid_UpdateCell event fired only when grid cell update.
My Question:
when i select a value from valueList then UltraWebGrid_UpdateCell event not fired. after selected value, when i select another cell then UltraWebGrid_UpdateCell fired.
my requirment is, when i select value from valuelist then UltraWebGrid_UpdateCell should be fired.
its very urgent for me. please give me suggestion for the same.