Jennifer wrote:1) What is the Specific syntax for Javascript on_end_edit function to fetch the value of your custom item and to "transfer it to Cell.Value "???; What is the specific syntax to "transfer it to a Cell.value" .
Transfer it to Cell.Value = Transfer drop down list selection (for example, the index) to Cell.Value = return drop down list selection from your on_end_edit.
So the on_end_edit function posted in your original post (seems to be based on our sample code) is where this happens. It gets the value from your drop down list and return it. The Grid calls this function and stores the return value into Cell.Value;
Jennifer wrote:2) HOW DO I reference the Custom column cell value (i.e. what was selected) OF A DROPDOWNLIST WITHIN A GRID ON THE SERVER SIDE in the code-behind?
You should
absolutely forget about that you have a drop down list when you are working on the server side. On the server side there are GridItem, GridCell and GridCell.Value. That's all you have. If your GridCell.Value does not have the correct value, then something on your client side, most likely your client side on_end_edit is wrong. In your case, since the EditorTemplate is a "select" element, not an asp:DropDownList, so
there is never a DropDownList on the server side;
Jennifer wrote:if the only thing I change is the selected value of the dropdownlist on the grid and then loop through it with the following code -- It detects the the dropdownlist Cell was modifed, but the cell.value is null.
Check your version. I believe in our early versions, the Grid does not submit a cell change unless you have left the cell. So if you just change it without moving the focus cell to another cell, the change will be discarded.
If that looks fine, then try to compare our sample code and your code because our sample code works fine. If you can not find the problem we can set up a web meeting to take a look. Just let us know.
Hope this helps.
Thanks