Auto-generate user click inside primeng pagination












1















I am using primeng's p-dataview with pagination to show user test questions.



<p-dataView [value]="userTestQuestions" [paginator]="true" [rows]="1" [totalRecords]="totalTestQuestions">
<ng-template let-question pTemplate="listItem">

... html to show the question with submit button => onClick event

</ng-template>




Currently after submit, I save the user result but user has to click on pagination to go to next question. The way I want is after submit, p-dataview automatically refreshes and goes to next page. I tried to search a lot but I am unable to find how I can auto-generate that user click inside primeng.



Currently using "primeng": "^6.1.4"



Thanks in advance,










share|improve this question



























    1















    I am using primeng's p-dataview with pagination to show user test questions.



    <p-dataView [value]="userTestQuestions" [paginator]="true" [rows]="1" [totalRecords]="totalTestQuestions">
    <ng-template let-question pTemplate="listItem">

    ... html to show the question with submit button => onClick event

    </ng-template>




    Currently after submit, I save the user result but user has to click on pagination to go to next question. The way I want is after submit, p-dataview automatically refreshes and goes to next page. I tried to search a lot but I am unable to find how I can auto-generate that user click inside primeng.



    Currently using "primeng": "^6.1.4"



    Thanks in advance,










    share|improve this question

























      1












      1








      1








      I am using primeng's p-dataview with pagination to show user test questions.



      <p-dataView [value]="userTestQuestions" [paginator]="true" [rows]="1" [totalRecords]="totalTestQuestions">
      <ng-template let-question pTemplate="listItem">

      ... html to show the question with submit button => onClick event

      </ng-template>




      Currently after submit, I save the user result but user has to click on pagination to go to next question. The way I want is after submit, p-dataview automatically refreshes and goes to next page. I tried to search a lot but I am unable to find how I can auto-generate that user click inside primeng.



      Currently using "primeng": "^6.1.4"



      Thanks in advance,










      share|improve this question














      I am using primeng's p-dataview with pagination to show user test questions.



      <p-dataView [value]="userTestQuestions" [paginator]="true" [rows]="1" [totalRecords]="totalTestQuestions">
      <ng-template let-question pTemplate="listItem">

      ... html to show the question with submit button => onClick event

      </ng-template>




      Currently after submit, I save the user result but user has to click on pagination to go to next question. The way I want is after submit, p-dataview automatically refreshes and goes to next page. I tried to search a lot but I am unable to find how I can auto-generate that user click inside primeng.



      Currently using "primeng": "^6.1.4"



      Thanks in advance,







      angular primeng






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 23 '18 at 6:43









      user2869612user2869612

      175315




      175315
























          1 Answer
          1






          active

          oldest

          votes


















          0














          I made a quick test, with the paginator only, showing no actual data. I added a reference to it, as shown here:



          <p-paginator #paginatorReference [rows]="10" [totalRecords]="120" [rowsPerPageOptions]="[10,20,30]"></p-paginator>


          I then used that reference on the fake submit button in order to call the paginator internal changePage method whenever it is clicked, like this:



          <button type="button" (click)="submitResults(); paginatorReference.changePage(paginatorReference.getPage()+1)">Press for next page</button>


          Some refining might be needed in order to check if you're already on the last page and other possible problems, but I did not have time for further testing.



          For future reference, you can check the paginator internal methods here: https://github.com/primefaces/primeng/blob/master/src/app/components/paginator/paginator.ts






          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',
            autoActivateHeartbeat: false,
            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%2f53441787%2fauto-generate-user-click-inside-primeng-pagination%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









            0














            I made a quick test, with the paginator only, showing no actual data. I added a reference to it, as shown here:



            <p-paginator #paginatorReference [rows]="10" [totalRecords]="120" [rowsPerPageOptions]="[10,20,30]"></p-paginator>


            I then used that reference on the fake submit button in order to call the paginator internal changePage method whenever it is clicked, like this:



            <button type="button" (click)="submitResults(); paginatorReference.changePage(paginatorReference.getPage()+1)">Press for next page</button>


            Some refining might be needed in order to check if you're already on the last page and other possible problems, but I did not have time for further testing.



            For future reference, you can check the paginator internal methods here: https://github.com/primefaces/primeng/blob/master/src/app/components/paginator/paginator.ts






            share|improve this answer




























              0














              I made a quick test, with the paginator only, showing no actual data. I added a reference to it, as shown here:



              <p-paginator #paginatorReference [rows]="10" [totalRecords]="120" [rowsPerPageOptions]="[10,20,30]"></p-paginator>


              I then used that reference on the fake submit button in order to call the paginator internal changePage method whenever it is clicked, like this:



              <button type="button" (click)="submitResults(); paginatorReference.changePage(paginatorReference.getPage()+1)">Press for next page</button>


              Some refining might be needed in order to check if you're already on the last page and other possible problems, but I did not have time for further testing.



              For future reference, you can check the paginator internal methods here: https://github.com/primefaces/primeng/blob/master/src/app/components/paginator/paginator.ts






              share|improve this answer


























                0












                0








                0







                I made a quick test, with the paginator only, showing no actual data. I added a reference to it, as shown here:



                <p-paginator #paginatorReference [rows]="10" [totalRecords]="120" [rowsPerPageOptions]="[10,20,30]"></p-paginator>


                I then used that reference on the fake submit button in order to call the paginator internal changePage method whenever it is clicked, like this:



                <button type="button" (click)="submitResults(); paginatorReference.changePage(paginatorReference.getPage()+1)">Press for next page</button>


                Some refining might be needed in order to check if you're already on the last page and other possible problems, but I did not have time for further testing.



                For future reference, you can check the paginator internal methods here: https://github.com/primefaces/primeng/blob/master/src/app/components/paginator/paginator.ts






                share|improve this answer













                I made a quick test, with the paginator only, showing no actual data. I added a reference to it, as shown here:



                <p-paginator #paginatorReference [rows]="10" [totalRecords]="120" [rowsPerPageOptions]="[10,20,30]"></p-paginator>


                I then used that reference on the fake submit button in order to call the paginator internal changePage method whenever it is clicked, like this:



                <button type="button" (click)="submitResults(); paginatorReference.changePage(paginatorReference.getPage()+1)">Press for next page</button>


                Some refining might be needed in order to check if you're already on the last page and other possible problems, but I did not have time for further testing.



                For future reference, you can check the paginator internal methods here: https://github.com/primefaces/primeng/blob/master/src/app/components/paginator/paginator.ts







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 23 '18 at 15:03









                ChronusChronus

                9611




                9611






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53441787%2fauto-generate-user-click-inside-primeng-pagination%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

                    404 Error Contact Form 7 ajax form submitting

                    How to know if a Active Directory user can login interactively

                    TypeError: fit_transform() missing 1 required positional argument: 'X'