Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
975
Use igGrid in non-mvc project
posted

I would like to know if it is alright to use the igGrid in a ASPX project (not MVC). Is there an example to illustrate how to use it on aspx page?

Parents
No Data
Reply
  • 23953
    Offline posted

    Hi,

    Ignite UI controls are pure JavaScript controls so they are server agnostic. You can use them with any server side technology. For ASP.NET MVC we also ship Infragistics MVC Wrappers of the Ignite UI controls. These wrappers implement remote igGrid scenarios such as paging, filtering, sorting, group by etc. If you want remote scenarios in other server side technology other than ASP.NET MVC then you should implement it yourself.

    Attached you can find ASP.NET WebForms project which demonstrates igGrid in remote data bind scenario. Note that this is only remote data binding. There is no remote paging, sorting, filtering etc. However you can easily enable them in local scenario. In local scenario all the data will be downloaded to the browser and igGrid features will operate on it without making subsequent requests to the server for more data.

     

    Hope this helps,

    Martin Pavlov

    Infragistics, Inc.

    igGrid_ASPNET.zip
Children