This is a migrated thread and some comments may be shown as answers.

[Solved] How to use checked records in a grid to load a new View

0 Answers 11 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Chris
Top achievements
Rank 1
Chris asked on 23 Nov 2011, 10:41 AM
Hello,
i use the client checkbox example from the telerik page. In the example when the user press the button the javascript load the content in the result div.
script type="text/javascript">       
        function displayCheckedOrders() {
            var $checkedRecords = $(':checked');
            $('#result').load('<%= Url.Action("DisplayCheckedOrders", "Grid")
                %>', $checkedRecords);
        }
    </script>

But i want to update the complete site. The result from the controller is a complete view.
I think this is more a javascript problem then a grid problem, but i hope some can help me.
Tags
Grid
Asked by
Chris
Top achievements
Rank 1
Share this question
or