How to use LazyPaginator together with RequestConfig and Table classes?











up vote
0
down vote

favorite












I want to visualize a big, indexed table - big enough for count(*) to be too slow for my use case. Here's my views.py code:



import django_tables2

from projectname.models import Growth

def dashboard(request):

class StatisticsTable(django_tables2.Table):

class Meta:
model = Growth

table = StatisticsTable(Growth.objects.all())
django_tables2.RequestConfig(
request
).configure(table)
return render(request, "plain_table.html", {'table': table,
'title': 'Growth dashboard',
'search': None})


I was looking for examples on how to use django_tables2.paginators.LazyPaginator here and so far only found that I should pass it as a paginate= in django_tables2.RequestConfig, but I still get a regular paginator if I pass a reference to the class there. What's the proper use of this class in this context?










share|improve this question


























    up vote
    0
    down vote

    favorite












    I want to visualize a big, indexed table - big enough for count(*) to be too slow for my use case. Here's my views.py code:



    import django_tables2

    from projectname.models import Growth

    def dashboard(request):

    class StatisticsTable(django_tables2.Table):

    class Meta:
    model = Growth

    table = StatisticsTable(Growth.objects.all())
    django_tables2.RequestConfig(
    request
    ).configure(table)
    return render(request, "plain_table.html", {'table': table,
    'title': 'Growth dashboard',
    'search': None})


    I was looking for examples on how to use django_tables2.paginators.LazyPaginator here and so far only found that I should pass it as a paginate= in django_tables2.RequestConfig, but I still get a regular paginator if I pass a reference to the class there. What's the proper use of this class in this context?










    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I want to visualize a big, indexed table - big enough for count(*) to be too slow for my use case. Here's my views.py code:



      import django_tables2

      from projectname.models import Growth

      def dashboard(request):

      class StatisticsTable(django_tables2.Table):

      class Meta:
      model = Growth

      table = StatisticsTable(Growth.objects.all())
      django_tables2.RequestConfig(
      request
      ).configure(table)
      return render(request, "plain_table.html", {'table': table,
      'title': 'Growth dashboard',
      'search': None})


      I was looking for examples on how to use django_tables2.paginators.LazyPaginator here and so far only found that I should pass it as a paginate= in django_tables2.RequestConfig, but I still get a regular paginator if I pass a reference to the class there. What's the proper use of this class in this context?










      share|improve this question













      I want to visualize a big, indexed table - big enough for count(*) to be too slow for my use case. Here's my views.py code:



      import django_tables2

      from projectname.models import Growth

      def dashboard(request):

      class StatisticsTable(django_tables2.Table):

      class Meta:
      model = Growth

      table = StatisticsTable(Growth.objects.all())
      django_tables2.RequestConfig(
      request
      ).configure(table)
      return render(request, "plain_table.html", {'table': table,
      'title': 'Growth dashboard',
      'search': None})


      I was looking for examples on how to use django_tables2.paginators.LazyPaginator here and so far only found that I should pass it as a paginate= in django_tables2.RequestConfig, but I still get a regular paginator if I pass a reference to the class there. What's the proper use of this class in this context?







      django-tables2






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 8 at 13:21









      d33tah

      4,17873384




      4,17873384
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote



          accepted










          RequestConfig(paginate={"paginator_class": LazyPaginator}).configure(table)





          share|improve this answer





















            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














             

            draft saved


            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53208617%2fhow-to-use-lazypaginator-together-with-requestconfig-and-table-classes%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            1
            down vote



            accepted










            RequestConfig(paginate={"paginator_class": LazyPaginator}).configure(table)





            share|improve this answer

























              up vote
              1
              down vote



              accepted










              RequestConfig(paginate={"paginator_class": LazyPaginator}).configure(table)





              share|improve this answer























                up vote
                1
                down vote



                accepted







                up vote
                1
                down vote



                accepted






                RequestConfig(paginate={"paginator_class": LazyPaginator}).configure(table)





                share|improve this answer












                RequestConfig(paginate={"paginator_class": LazyPaginator}).configure(table)






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 11 at 14:18









                Jieter

                2,67511124




                2,67511124






























                     

                    draft saved


                    draft discarded



















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53208617%2fhow-to-use-lazypaginator-together-with-requestconfig-and-table-classes%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Guess what letter conforming each word

                    Port of Spain

                    Run scheduled task as local user group (not BUILTIN)