Search
43827 results 6391-6400
Forum
- 3rd Mar 2009reading properties from tableintit properties from the table.. Currently in Alpha version.
- 20th Nov 2025! symbol not filtering tableLink to test case: https://datatables.net/examples/api/multi_filter.html Debugger code (debug.datatables.net): - Error messages shown: - Description of problem: When inserting search value "!" or how many you like it dose not start filtering. Feels like a bug because it accepts different symbols like ?, <, : and etc. Or is there ignore symbols list somewhere that i have not found. And how does search work with space? whem im entering "1 2 3 4 5" its filter like "1 or 2 or..." but if i enter "38 33" it filter all out. (Same example- age)
- 5th Sep 2025How to optimize data table with 400+ columns?Rendering 400+ columns in 1–2 minutes definitely signals a performance bottleneck. You might consider showing only a subset of columns initially and loading the rest on demand, or better yet, enabling server-side processing to drastically reduce rendering time. These approaches can help keep the UI responsive even with huge tables.
- 3rd Sep 2025All rows of the table is not displayed when shortcode is added in tabs or accordeon.I'd suggest you get in touch with Tobias at WPDatatables support then. Allan
- 20th Feb 2025DataTable editor across multiple pages of a serverside tableLink to test case: This can be seen on the serverside processing example Description of problem: When selecting items on the first page then some items on the second page, performing a multi row edit would only affect the elements selected on the current page. Is there a way to have this applied to all selected rows (eg. by using dt.select.cumulative().rows)? Thank you!
- 6th Aug 2025table part of a field not found with calclated field in phpYou are hitting this part of the code. Unfortunately it doesn't take account of doing something quite like you have. I'll need to have a think about that, possibly it could be as simple as checking for ( and accepting that the dev knows what they are doing. That check is really just a sanity check and could be commented out in your local code if you want to bypass it. Allan
- 1st Aug 2025reference udf column from table clickSounds like you are going to need to use cell().render() to get the rendered data for that cell. Kevin
- 29th Jul 2025would you instruct how to rearrange the info element in the top of the table (e.g search box...)There is a collection of examples here for how to use layout. Allan
- 17th Jul 2025Can we add/edit data using a popup modal to the tableThe Editor provides these capabilities. See these examples. It can be downloaded from here. The download can be used for a trial period. Then a license can be purchased here. Kevin
- 13th Jul 2025Datatables generator base css max-width: 980px moving table away from left sideI noticed that when I use the files from the download generator, the datatable is no longer along the left side of the page and is wider than the desktop browser The generator-base.css contains the following: body.dataTables div.container, body.jqueryui div.container { max-width: 980px; margin: 0 auto; } When I remove the line: max-width: 980px; the DT seems to look fine in the desktop browser Why does including the above line cause dt to shift ?