Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Power Apps Pro Dev & ISV
Answered

[BUG?] Dataset paging problem

(3) ShareShare
ReportReport
Posted on by

Hi,

 

I have a dataset pcf control to visualize subgrid data and have a problem with paging. For my visualization i have to load all records of the subgrid. Following code doesn't work correctly with small page size. 

 

 

public updateView(context: ComponentFramework.Context<IInputs>): void {
 // Add code to update control view

 if (context.parameters.targetDataSet.paging.hasNextPage) {
 context.parameters.targetDataSet.paging.loadNextPage();
 }
 else {
 // context.parameters.targetDataSet.loading == false
 // context.parameters.targetDataSet.paging.totalResultCount == 14
 // context.parameters.targetDataSet.records == 10 Objects
 }
}

In my case the formatting options for the subgrid was set to 4 per default. For example if I increase it to 10 it loads all 14 records. But with page size 4 I'm getting only 10 of 14 records.

 

Does anyone other had this issues or can explain why it not works with smaller page size?

 

Current installed cli is 0.3.4 but the project was created with previous 0.2.8 (or so).

  • Community Power Platform Member Profile Picture
    on at
    Re: [BUG?] Dataset paging problem

    @Anonymous I'm sorry but I'm not very familar with power apps. I would try to create a blank app with a static label or button and then try to share.

    In this way you could check if sharing in generel is working or not. If it works try to add a dataset and share again. If this works too you have to look for difference between your blank app and your current app. If this is not working then someone with more experience have to look at it 🙂

    But as i said I'm not very familiar with power apps so it could be something very simple or it just not proposed for that like what @HemantG wrote. 

  • Hemant Gaur Profile Picture
    on at
    Re: [BUG?] Dataset paging problem
    @Anonymous Canvas apps does not has PCF support yet so this question should be posted on PowerApps maker/general forum .

    My guess is that you are not sharing connectors inside the app.

    Hemant
  • Community Power Platform Member Profile Picture
    on at
    Re: [BUG?] Dataset paging problem

    hey Dieter-aXon,

    i have a problem in power apps,

    i have created a canvas powerapps and published it but when ever the person with wome i have shared the app is opeing the app it is showing several errors with the names of tables used as data base as they are not supporting, however the app is running perfectly with my login profile and for those who are other users its now working.

    please help me out of it.

    Thanks in advance.


    @Anonymous wrote:

    Hi,

     

    I have a dataset pcf control to visualize subgrid data and have a problem with paging. For my visualization i have to load all records of the subgrid. Following code doesn't work correctly with small page size. 

     

     

    public updateView(context: ComponentFramework.Context<IInputs>): void {
     // Add code to update control view
    
     if (context.parameters.targetDataSet.paging.hasNextPage) {
     context.parameters.targetDataSet.paging.loadNextPage();
     }
     else {
     // context.parameters.targetDataSet.loading == false
     // context.parameters.targetDataSet.paging.totalResultCount == 14
     // context.parameters.targetDataSet.records == 10 Objects
     }
    }

    In my case the formatting options for the subgrid was set to 4 per default. For example if I increase it to 10 it loads all 14 records. But with page size 4 I'm getting only 10 of 14 records.

     

    Does anyone other had this issues or can explain why it not works with smaller page size?

     

    Current installed cli is 0.3.4 but the project was created with previous 0.2.8 (or so).


     

  • Community Power Platform Member Profile Picture
    on at
    Re: [BUG?] Dataset paging problem

    Hi,

    thanks for the information but since I realized my paging problem I had increased it already to maximum of 250. In most of my cases it should be enough. I will definitely include the loading condition inside updateView.

    I just though that this is a bug and should be reported 😉

     

    Regards

  • AnqiChen Profile Picture
    on at
    Re: [BUG?] Dataset paging problem

    hi Dieter,

     

    While we are still triage whether the number of records should go with the Form Control Formatting. You could actually update your control's pageSize

     

    Here is the way, when the control stop initial loading

    You could use

    1) context.parameters.targetDataSet.paging.setPageSize(<big number>)

    and then call 2) context.parameter.targetDataSet.refresh()

     

    Then the pageSize should be updated. If there still more than expected number of data, you could continue use loadNextPage to load next <big number> size of data

  • Community Power Platform Member Profile Picture
    on at
    Re: [BUG?] Dataset paging problem

    Thanks a lot!

    I had no information about the "dataSet.loading" property.

    Seems that my initial code snippet was wrong. Just done same Test. Pagesize of 4, subgrid has total 9 records but with my original code it loads only 6. With the customized code it works well and loads all 9 records.

     

    	public updateView(context: ComponentFramework.Context<IInputs>): void {		
    
    		// Wait for dataset loading and trigger loadNextPage() if there is more
    		if (context.parameters.sampleDataSet.loading == true) {
    			return;
    		}
    
    		if (context.parameters.sampleDataSet.paging.hasNextPage) {
    			context.parameters.sampleDataSet.paging.loadNextPage();
    		}
    		else {
    			var totalCount = context.parameters.sampleDataSet.paging.totalResultCount;
    			var recordIds = Object.keys(context.parameters.sampleDataSet.records);
    			debugger;
    		}
    	}
  • Verified answer
    AnqiChen Profile Picture
    on at
    Re: [BUG?] Dataset paging problem

    hi Dieter,

     

    First, thanks for pointing out this, I did test and it is as what you are saying. On form, the dataset page Size seems related with the formatting pane. I was incorrect on this. I need to confirm with other team member on the expected behavior.

     

    Second, regarding your observation,

    When the pageSize is 5, it calls loadNextPage and get 5 more records, so it totally get all 10 records

    When the pageSize is 4, it calls loadNextPage and get 4 more records, now it sits to 8 records. And then, as it still have 2 more records not loaded, it should get hasNextPage to true and load the remaining records.

     

    At my side, I have simulate the whole process and it did get all 10 records. As this does not repro/happen to me, here is the thing that I wish you could help us to figure out.

    1) When it sets to load 8 records, would you mind to check the hasNextPage flag again, is it setting to be true?

    2) Our loadNextPage is designed that one page is finished loading, then it should request next page data. Would you mind to have  'context.parameters.targetDataSet.loading' to be false before another page loading?

     

    I apologize for any inconvenience, if it still not quite working, would you mind to have a simplified control solution and share to us. My email is 'achen@microsoft.com' in case you need a private drop

     

     

     

     

  • Community Power Platform Member Profile Picture
    on at
    Re: [BUG?] Dataset paging problem

    Ok, but why I'm getting different results with row formatting options of 4 or 10 records per page?

    Is the snippet I posted the right solution to load all records behind the configured subgrid view?

     

    EDIT:
    This is the reason why I'm believe the subgrid uses the formatting options not the personal options.

    subgrid_page_properties_1.pngsubgrid_page_properties_2.pngsubgrid_page_properties_3.png

    If I the check the dataset records inside // TODO line (I believe it should run after paging is complete) there are only 8 records loaded

    if (context.parameters.targetDataSet.paging.hasNextPage) {
    context.parameters.targetDataSet.paging.loadNextPage();
    } else {
    Object.keys(context.parameters.targetDataSet.records); // -> 8 Records
    }

    If I'm increase the options for example to 5 it loads all my 10 records.

     

    I believe that this is a bug but I don't know if it is only in our system or in all others.

  • AnqiChen Profile Picture
    on at
    Re: [BUG?] Dataset paging problem

    hi Diexer,

     

    I assume you are talking about the visual height of the control, not the data page size.

     

    1. For visual part, the height of the PCF control generally be unlimitted. We basically give u a container div, and you could decide the height, it's not related with the formatting option.

     

    2. For data part, the initial data pageSize is set through below, (not related with formatting, which is a visual concept)

    Options(Top Right Corner) -> Records per page.

    p1.png

  • Community Power Platform Member Profile Picture
    on at
    Re: [BUG?] Dataset paging problem

    Hi,

    I mean the formatting options of the subgrid and the configurable page size.

    subgrid_page_properties.png

     

    Currently I've set it to maximum of 250 but i don't know if there will be same issues if there are more records.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

🌸 Community Spring Festival 2025 Challenge Winners! 🌸

Congratulations to all our community participants!

Warren Belz – Community Spotlight

We are honored to recognize Warren Belz as our May 2025 Community…

Leaderboard > Power Apps - Power Apps Pro Dev & ISV

#1
WarrenBelz Profile Picture

WarrenBelz 89 Most Valuable Professional

#2
Michael E. Gernaey Profile Picture

Michael E. Gernaey 72 Super User 2025 Season 1

#3
mmbr1606 Profile Picture

mmbr1606 71 Super User 2025 Season 1

Overall leaderboard