Click here to Skip to main content
15,896,063 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,

I am using Asp.net MVC telerik Grid...

How to read the data from this grid using JQuery?
(When i click "save" button this function will start work)

I completed upto this part and facing problem here to get the data from grid...

I used like this following ways,
JavaScript
var grid = $('#RoleGrid').data('tGrid');

and
JavaScript
var grid = $('#RoleGrid').data('tGrid');
var data = grid.data;

but i am not getting rows into to "grid" or "data"....

can any one have idea regarding this and to get data into this variables....?
Posted
Updated 23-Jun-12 6:35am
v2
Comments
P_A_1 23-Jun-12 11:46am    
I hope all u understand my point clearly...
;)

1 solution

@using(Html.BeginForm()){

@Html.HiddenFor(m=>m.JsonData)
'
'
grid goes here
}


var grid = $('#RoleGrid').data('tGrid');
var data = grid.data;
grid.submitChanges(); // but only if you grid edit mode is inCell. or try to post the //hidden variable by using

////only this////

var formSerailized=JSON.stringify($('#youfromidhere').data;
//assing to hidden varible JsonData\
$('#Jsondata').val(formserilized);
//you are done but you need deserilizer to //assing them into a model.

/////

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900