You must be logged in to reply to this topic.
| Wijmo Team Member | MKSSoluciones posted on May 29, 2012 at 1:33 am Hi, I want to show data from my web service into the Grid, but i saw a few ways to load it but i cant see how to send parameters to my web service in ASPNET C#, and which type of data has to return the service. | |
| Wijmo Team Member | sergeys posted on May 29, 2012 at 11:58 pm There are many samples in the Web of how to get data from ASP.NET Web Service using jQuery.ajax, try to check them.
$.ajax({
…
success: function(data) {
$(‘#demo’).wijgrid({
data: extractArray(data)
});
}
});
| Answer |
You must be logged in to reply to this topic.