views:

49

answers:

1

I have a dropdown box in my view which is populated with objects from database. Now what I want to do is, based upon selection in the Dropdown fill various textboxes with property values of the object selected in the dropdownlist.

There are numerous examples where you copy the selected dropdown value in the textbox using JQuery / JavaScript etc, but I can't find any doing the same but instead of copying; place the values of the properties of the object in the textboxes.

How would this be done in a nice way? I would prefer to do it without posting the entire form, though those answers may be posted also.

+1  A: 
Alexander