Get 2024 Templates Mega Bundle!14 Bootstrap, Vue & React Templates + 3 Vector Sets
Get for 99$

Datatables Serverside Selected Count Bug


In the Docs & Components example for Serverside AJAX Datatable, the footer selection counter is not working properly. No matter how many rows are selected, it always says "1 row selected".

In addition, clicking the whitearea in checkbox column but not the checkbox itself will toggle the "1 row selected" text even though the checkbox element is never interacted with.

https://preview.keenthemes.com/metronic8/demo14/documentation/general/datatables/server-side.html


Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(

Replies (3)


Hi,

Could you please provide us more info on how to reproduce this bug ? We were not able to reproduce this as you explained. Could you also please let us know your OS and Browser versions ?

Regards



<a>https://streamable.com/vcbix8</a>

Firefox 96
Chrome 97

Windows 10



Hi,

Thanks for pointing this out. There's a slight misconfig in the Datatable initialization JS. We'll be pushing a fix for this on our next update.

In the meantime, if you require a fix for this urgently, you'll first need to open the JS file that initializes your table, in this example, it's located at theme/html/demo/js/custom/documentation/general/datatables/server-side.js

Then scroll to line 18 and you'll find this code snippet:

select: {
style: "os",
selector: "td:first-child",
className: "row-selected"
},


Replace that config with this:

select: {
style: "multi",
selector: "td:first-child input[type="checkbox"]",
className: "row-selected"
},


And you're good to go.


Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(
Text formatting options
Submit
Here's a how to add some HTML formatting to your comment:
  • <pre></pre> for JS codes block
  • <pre lang="html"></pre> for HTML code block
  • <pre lang="scss"></pre> for SCSS code block
  • <pre lang="php"></pre> for PHP code block
  • <code></code> for single line of code
  • <strong></strong> to make things bold
  • <em></em> to emphasize
  • <ul><li></li></ul>  to make list
  • <ol><li></li></ol>  to make ordered list
  • <h3></h3> to make headings
  • <a></a> for links
  • <img> to paste in an image
  • <blockquote></blockquote> to quote somebody
  • happy  :)
  • shocked  :|
  • sad  :(