Tag: JQuery

  • Client side sorting with ASP.NET GridView and jQuery TableSorter

    UPDATE If you are looking for a more complete solution including filtering, search, paging, and server side sorting, look at my post on using the datatables plugin with ASP.NET. Doing some quick data prototyping, I employed the use of the ASP.NET GridView to quickly report on my data objects. As is common, the prototypes quickly took […]

  • jQuery Datatables with C# / .NET web services

    I just completed a project where I integrated that jQuery Datatables plugin http://datatables.net. The documentation from the Datatables website was helpful but there were a gaps that needed extended documentation. This particular implementation uses an ASMX service for the underlying service. The plugin is integrated with my <table> with the following call. $(‘#example’).dataTable({ bJQueryUI: true, […]