Sparkplug Marcus

Results 9 comments of Sparkplug Marcus

No, I'm just decided to not use scrolling. I posted a question on SO, but no answer. http://stackoverflow.com/questions/20485004/endless-pagination-loads-entire-page-contents-on-scroll

Any chance there is an update on this?

@jpatel3 have you made any progress on this implementation?

Sorry, but no. I haven't dug into thoroughly. Instead I just didn't cache models that have a versatileimagefield. Far from ideal, but ok for my hobby project.

It is not working for me either. ``` class Alpha(models.Model): ... class Beta(models.Model): alpha = AutoOneToOneField(Alpha, primary_key=True, on_delete=models.CASCADE) ``` I created an `Alpha` object and no corresponding `Beta` object was...

I have solved this with the following subclass of `CsvRenderer`. It depends on `more_itertools` library. ``` # python from collections import OrderedDict from six import text_type # contrib from more_itertools...

For anyone interested I refactored `tabilize` in the class I pasted previously to generate user friendly column labels. Pasted below in case it helps. It fits my use case where...