0

I have been searching around on Google and SO for awhile now and can't seem to find an answer to this seemingly easy question. I want to implement the JQuery selectable widget exactly how it is shown here: http://jqueryui.com/selectable/#default. I am using ASP.NET. What I want to happen is the user will select every item they want from the list, whether it is one or multiple items. When they are done, they will click a submit button. My question is how can I see what values are selected server side?

Eric R.
  • 1,105
  • 3
  • 21
  • 48

1 Answers1

0

See the serialize example.

Use the stop event to create a list of values, put that list in an hidden field control, and read the list on the server.

Jason P
  • 26,984
  • 3
  • 31
  • 45