WelcomeForumsCommunityShow Web Service Data in Wijmo Grid

Wijmo Team Member
MKSSoluciones posted on May 29, 2012 at 1:33 am link

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 link

There are many samples in the Web of how to get data from ASP.NET Web Service using jQuery.ajax, try to check them.
To start with, see below:

  $.ajax({
    …

    success: function(data) {
      $(‘#demo’).wijgrid({
         data: extractArray(data)
      });
    }
  });
Answer

This topic has 2 voices, contains 1 reply, and was last updated by  sergeys 356 days ago.

You must be logged in to reply to this topic.