logoalt Hacker News

hk__2today at 3:45 PM2 repliesview on HN

Related to this, I’d love that HTML natively support sortable tables. This is a common need but every single time I have to reimplement it.


Replies

wild_eggtoday at 4:33 PM

You want client side table sorting?

It's really easy to do this with server rendered HTML. Put a link with the sort param in the column headers and be done.

show 1 reply
krapptoday at 4:10 PM

That's what javascript is supposed to be for. All of this is what javascript is supposed to be for.

HTML describes layout, CSS describes style, JS adds interactivity.

Want sortable tables? Get a jquery plugin and spend five minutes, done.

This was all solved a decade or more ago.