This question is locked. New answers and comments are not allowed.
Hello all.
Please help me out here. Here is my scenario:
I have a MVC grid displaying data, and has AJAX binding. So far so good. On a Row Select, I want to display a Modal Window, and pass the grid selected row Datakey to the window.
The window then has to display data, by calling a web service passing the received ID.
I have the ajax row selection alraedy in place as such:
I'd like to know :
1. How to show a window on this selected event.
2. Pass the ID to the window.
3. Windows showing details of the result of the web service call.
Thank you.
Please help me out here. Here is my scenario:
I have a MVC grid displaying data, and has AJAX binding. So far so good. On a Row Select, I want to display a Modal Window, and pass the grid selected row Datakey to the window.
The window then has to display data, by calling a web service passing the received ID.
I have the ajax row selection alraedy in place as such:
<script type="text/javascript"> function onRowSelected(e) { var historyGrid = $('#historyGrid').data('tGrid'); var transactionID = e.row.cells[0].innerHTML; } I'd like to know :
1. How to show a window on this selected event.
2. Pass the ID to the window.
3. Windows showing details of the result of the web service call.
Thank you.