Can I use jquery controls with asp.net or I have to use MVC?
Hi arkgroup,
If you have any further question, please let me know.
Hi,
Attached you can find a sample which shows how to bind igHierarchicalGrid using a Generic handler.
The generic handler is implemented in GetData.ashx and simply serializes a Customer model list to a JSON. Customer class is defined in "Models\Customer.cs" file and contains Orders property which holds list of customer orders. Order class is defined in "Models\Order.cs". There is also a static GetCustomers method defined for Customer class which returns a generated data for igHierarhicalGrid.
igHierarhicalGrid is defined in Default.aspx file in pure JavaScript. The interesting part is that dataSource points to the generic handler: dataSource: "/GetData.ashx".
Best regards,
Martin Pavlov
Infragistics, Inc.
Can you provide sample code for how to use jquery hierarchical grid with ASP.NET (not MVC)?
BTW, you link to hierarchical grid sample is broken
http://es.infragistics.com/products/jquery/hierarchical-grid/
NetAdvantage for jQuery controls are client side controls i.e. they are implemented in JavaScript and are executed in the browser. You can choose whatever server side technology suits you.
As an addition we created server side ASP.NET MVC Wrappers for the NA for jQuery controls which are not separate controls, but a server side helper functions for MVC projects. Apart from generating JavaScript code in the Views MVC Wrappers also simplify remote operations like: remote paging, remote sorting, remote filtering etc.
So if you want to use server side technology like ASP.NET Web Forms then you have to implement remote operations on your own.
Hope this helps,
Sure you can use our jQuery controls in ASP.NET Web Forms as well.
Let me know if you have any questions regarding the matter.