Search
14013 results 3081-3090
Forum
- 27th Jul 2018Editor search with server side fails.Hi, Yes. That's correct, forgot to comment on this. Thanks. Regards.
- 24th Jul 2018DataTables search and filter by group?Hi @FrazeColder , Not sure if you're aware, but there's the RowGroup extension that'll do pretty much what you want - here's an one of the examples of it. I modified your example here - the code is repetitive so could be refactored, but I think it does what you're after, Cheers, Colin
- 24th Jul 2018Server Side Processing and SearchMy suggestion would be to use client side processing unless you have thousands of records that cause performance issues. deferRender can help with page rendering speed but if the full set of data is slow with the ajax response then you will need Server Side Processing. This page discusses the parameters sent to the server and the expected responses when using Server Side Processing. Your Django scripts will need to handle searching and sorting. Kevin
- 15th Jun 2018File Export with Individual Column SearchThanks @colin, I've figure it out, thanks.
- 8th Jun 2018how do i use load datatables with an elastic search response and call the api again pagination?The documentation I linked to describes the API that DataTables uses for server-side processing. Basically you have to have the server expect that set of data, and then respond with the JSON parameters that DataTables expects. If it isn't possible to do that with your API you would need a proxy somewhere to translate between them. Allan
- 5th Jun 2018Hide the header & keep search in centre.Not really a DataTables problem. Your browser inspector will show you this border: 1px solid #ddd; in bootstrap.min.css. Unticking the box makes the problem go away; but I don't know what other effects this may have.
- 26th Apr 2018Disabling Pagination, Sorting and Search Box in Editor DataTables?thanks @colin :#
- 23rd Apr 2018Ordering + Buttons + SearchThanks Allan for responding.. I already found away and yeap thus includes the comments you've suggested too.. Cheers, ZyrowCool
- 10th Apr 2018Adding custom text between length changing input control and searchHi @shivaselvadurai , We just took a look at this and unfortunately you are probably going to need something as complicated as you had originally. If you insert something like '<"toolbar">' into the dom property where you want your custom element, you should be able to manipulate it there. Cheers, Colin
- 22nd Mar 2018Need to reduce vertical height between table and above elements i.e. search bar and add new buttonHi Aditya14, There's some built in classes that do help reduce space - see this page. compact is reduced between the elements, and the row spacing is also reduced. You could take that as a starting point and modify to suit your needs. Cheers, Colin