Giter VIP home page Giter VIP logo

Comments (6)

mschoettle avatar mschoettle commented on June 11, 2024 1

Since I am planning to also use HTMX or Unpoly (haven't figured out yet which one, if you have any insight into this I'd be interested to hear) in the near future I am also interested in this.

Personally, I'd prefer having support for adding extra attributes to the a in th vs. having to copy-and-paste the template to add this.

For HTMX it seems there might be a few more attributes required: https://enzircle.com/responsive-table-with-django-and-htmx

from django-tables2.

spapas avatar spapas commented on June 11, 2024 1

I don't see much movement on this issue. However, for people that want some kind of solution to that there's a simple one, use up.compile like this:

up.compiler('.pagination .page-item a.page-link', (link) => {
  link.setAttribute('up-follow', link.href)
  link.setAttribute('up-target', ".table-container")
})

up.compiler('th.orderable a[href]', (link) => {
  link.setAttribute('up-follow', link.href)
  link.setAttribute('up-target', ".table-container")
})

I'd still like a python solution for non-unpoly usage but if you're using unpoly this solution is the best!

from django-tables2.

spapas avatar spapas commented on June 11, 2024

Hey @mschoettle my understanding is that adding a way to pass the options to the proper element in the header or pagination should cover the requirements of both unpoly and htmx or intercooler.

Now on using unpoly vs htmx I have chosen unpoly because it is simpler to integrate and debug (it doesn't really need anything on the server-side since all requests will retrieve the full response) and I really like the Unpoly overlays feature (https://unpoly.com/up.layer) because it allows opening modals more or less for "free" (if you use bootstrap at least).

from django-tables2.

mschoettle avatar mschoettle commented on June 11, 2024

Thanks for the explanation! I'll have to give it a try again.

In the link above the HTMX attributes were added to the <th> tag instead of the <a> child. That should already be supported. Would that be an option for you?

from django-tables2.

spapas avatar spapas commented on June 11, 2024

Yes you are right, I saw it on the post. This is a good post btw but the fact that it needs so many changes on your project to integrate htmx makes it more or less impractical (that's mainly the reason I'd like to fix this issue).

Unfortunatley adding attrs on the th element doesn't work with unpoly: Since there's an element inside the any unpoly attrs I add on the will be ignored. Please notice that in the post it overrides the template to remove the and have only th .

Also even if it worked somehow, there's also the pagination problem :)

from django-tables2.

bblanchon avatar bblanchon commented on June 11, 2024

I'm also very interested in adding attributes to links in orderable columns.
In my case, it would be to add HTMX's hx-get attribute to allow reloading only the table instead of the whole page.

PS: I just realized I could achieve a similar result with hx-boost="true" and hx-swap="show:none" on the thead.

from django-tables2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.