how to paginate and combine results that come from different sources sorted
I have the following scenario:
filtering data from db
I’ve taken over a web application that someone else built. It’s a pretty simple application that queries ALL records from a db and displays them in a list.
They’ve also provided a way to ‘filter’ the data. When the user enters in data into a “filter by” text box, via Ajax the system re-queries the database to only select records that begin with that data.
it’s basically doing a
filtering data from db
I’ve taken over a web application that someone else built. It’s a pretty simple application that queries ALL records from a db and displays them in a list.
They’ve also provided a way to ‘filter’ the data. When the user enters in data into a “filter by” text box, via Ajax the system re-queries the database to only select records that begin with that data.
it’s basically doing a
MVC, pagination, and massive search criteria
I am currently working on a project that has a fairly large search form – the form is 30 or fields or more.
MVC, pagination, and massive search criteria
I am currently working on a project that has a fairly large search form – the form is 30 or fields or more.