Search
13879 results 3121-3130
Forum
- 10th Oct 2012Make pagination and search shareable.Currently no - there isn't a built in way to do this, although you can easily do it using the initialisation options. You just need to parse the query string and pass the required parameters to DataTables ( iDisplayStart for example). This has come up a number of times recently, so I've made a note to write a tutorial about it in future, although if you do some up with your own solution, I'm sure others would be very grateful if you could share it! Allan
- 24th Jul 2012exact value search by select boxhi srimanta12, though i am not 100% sure but there is a property called "bCaseInsensitive" which by default is true why dont you make it as false and then try to filter. Arjun
- 2nd Jul 2012Filter column by passing column name and search stringThat is a planned feature for DataTables 1.10: http://datatables.net/development/roadmap Allan
- 13th Jun 2012How to reload page after searchYou haven't provided enough information for us to provide a meaningful answer. You say a "script is called" when your page loads. Is this a client-side Javascript? Server-side PHP that generates your page? Can we see the source code for this script? You are "making a query". How? Against what data? If you have a server-side process that returns JSON data, and you want your Datatable to contain that JSON data, then look at using an AJAX datasource and the fnReloadAjax() function, which you can call whenever you need the table to update.
- 28th May 2012Is cookie the only way to pass search params from one search page to the datatable page?wow. Instant response. Thanks Allan
- 20th May 2012Get current filter / search?Use fnSettings().oPreviousSearch in 1.9
- 20th Apr 2012Customize search input/ filter inputAwesome, thanks for your help Allan.
- 7th Apr 2012The search bar and paging in bootstrap 2.0 look bad.Hello, I'm back but with only half the solution but the problem I had changed things luegar was because the grid system used for the project that was the fluid-grid, and thus not used the means but with percentages in pixels. To solve my problem instead of using fluid please use the common grid. Being as follows: [code] Seleccione Especialidad Especialidades Seleccionar
- 12th Mar 2012Select Element in between Length and SearchI believe I may have got it by adding a float: left to the .yearlist div. :)
- 6th Mar 2012Get Search Term with jQuery selector?[code] $('#{table_id}_filter input').val(); [/code] will do it. Allan