Is it possible to show a select box in view mode for each row. The select box contains different actions that can be performed. i.e.
Actions:
Go to page1
Go to page2
…
Row 1 can select page1, page2
Row 2 can select page1, page2, page3
…
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use custom formatter to include
<select>in the cells from the “actions” column. The custom formatter should return the HTML fragments as strings.Later, inside of
loadComplete, you can call something like("#list select").bind('change', ...to bind your “change” event handler which should be called if the user changes the item from the corresponding select. The exact code is depend on your implementation details: where you hold which information and how the actions “Go to page1” you want to implement.