Search
14013 results 3071-3080
Forum
- 4th Feb 2019I want show total of salary when i will search for specificHi @agondhale30 , This thread should help, it's asking the same thing. Cheers, Colin
- 29th Jan 2019Add nested tables to row as child row and search the table as well as child rowsLooks like you are close. I'm not sure that row.child() will return a valid jQuery selector for $(row.child()).DataTable(. You will want to use something else for the table ID such as the row index or a unique data element. You will want to add this id to the table tag in your format function. You will want to build the child table before trying to init the child Datatable. varrow.child(format()).show();should come beforevar table = $(row.child()).DataTable({` This example may help: http://live.datatables.net/gohefoki/1/edit Kevin
- 22nd Jan 2019search() for individual column is not workingHi @markvj , There's not much to go on there. Hopefully this working example will help. If not, we're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here. Cheers, Colin
- 26th Nov 2018Spring Boot DataTable TIMESTAMP range searchIf you got this problem, you have to reset the value of the "colmunParameter" in the DataTablesInput object. SOLUTION : public DataTablesOutput listParla(@Valid DataTablesInput input) { Column parameter0 = input.getColumns().get(6); Specification<Parla> additionalSpecification = new DateSpecification(parameter0.getSearch().getValue()); parameter0.getSearch().setValue(""); <--- return repository.findAll(input, additionalSpecification ); } Spring Data Jpa DATATABLES server side, date RANGE filter with TIMESTAMP column POSTGRESQL. /CLOSED
- 19th Nov 2018how i can change search and next ... language to persianI found it thank you very much <3
- 26th Oct 2018Is there a way to invoke an ajax for every search and alter the table data by the ajax result?Yey! Thanks!
- 14th Sep 2018What do we need exactly to make work the individual search columns with datatable tools?Hi @Nina111 , As you can see, it works in that example, so it's something wrong with your code - but without seeing it, there isn't much we can do. We're happy to take a look, but it would help, as per the forum rules, if you could link to a running test case showing the issue so we can offer some help. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here. Cheers, Colin
- 3rd Aug 2018trigger searchtry giving min and max variables different names that what is inside your function
- 1st Aug 2018Move search text box to left sideI have done it this way, which changes the position of the controls as intended but then I lose the paging at the bottom of the report. How do I make sure my pages stays were it is (bottom) when I implement this code?
- 31st Jul 2018Multi Select Search on colums (server_side-on)case, the multi-select option searches based on "contains" instead