I have a Bound Table (to a collection in my Model)
One of its cells is a Drop Down, getting its values from a Dataset.
I want to create a Controller Action, to be called on the "OnChange" action of the DropDown, that will display me the selected value. Example:
ShowMessage(selectedDropDownItem.Value);
Is this possible? If yes, how? (I don't even know how to write the Controller Action.. What would be its input??)
Any help will be very much appreciated!