javascript - React table filtering & responsive -


i want create table using react should have following functionality

  • search filter using name filter
  • dropdown filter using states
  • ascending , descending order sorting when clicking on column header.
  • make table responsive

you can assume following data - var data = [{name: 'zz',state: 'ua'},{name: 'hhj',state: 'op'}]

i've search following react plugins table functionality -

while looking stars @ github, seems react griddle better what best plugin achieve goal ?


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -