Hey everyone, Does anyone know of a tool that I can use to easily create tables that will have the following features: - Sortable - Searchable - Pagination - Filtering - AJAX (this isn't a necessity but it would be lovely) I don't really care what the back end is: SQL, XML, whatever. And it doesn't matter if there's a free solution or not, I'll buy a product if I have to. So does anyone have any suggestions for me? Much appreciated!
If you use ASP.Net then you have <asp:updatepanel> <asp:gridview> & <asp:sqldatasource> which will do sortable, pagination and ajax out the box and it isnt hard to add filtering and searching to it (as long as it isnt weighted searching which is more complex)
I have never used ASP.Net before but that sounds like a great solution so I think I'm going to dive into it this weekend. Thanks for the suggestion.
ASP.Net is the web version of microsofts .Net framework. They do a free version of the development tool called Visual Web Developer Express which has wysiwyg type interface as well as source code & a test server built into it for playing
Before I go and write something semi from scratch, nobody knows of any php scripts that do this? It seems like a ton of people would have a need for inventory tables, I'm suprised it's so hard to find a product that does this.
Writing from scratch? not really hard, your paging, sorting etc is simply: <%@ Page Language="VB" %> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Untitled Page</title> </head> <body> <form id="form1" runat="server"> <div> <asp:ScriptManager ID="ScriptManager1" runat="server" /> <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <asp:GridView ID="GridView1" runat="server" AllowPaging="True" AllowSorting="True" DataSourceID="SqlDataSource1" /> <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:ImPlayingCS %>" SelectCommand="SELECT * FROM [Comments]" /> </ContentTemplate> </asp:UpdatePanel> </div> </form> </body> </html> Code (.Net): just need a small amount of code to do filtering and searching