-
Notifications
You must be signed in to change notification settings - Fork 44
FLUT-5959 - [Feature] Prepared UG for rowsCacheExtent feature. #36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Build Status: INPROGRESS 🔃 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As discussed, modify the content. Remove the unwanted headings and advantage topic. Refer API comments and include the necessary details.
Build Status: INPROGRESS 🔃 |
CI Status: FAILURE ❌ |
Build Status: INPROGRESS 🔃 |
CI Status: FAILURE ❌ |
Build Status: INPROGRESS 🔃 |
CI Status: FAILURE ❌ |
Build Status: INPROGRESS 🔃 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Sangeetha-Raju - I have added my concerns as comments.
Flutter/datagrid/scrolling.md
Outdated
## Increase row cache limit | ||
|
||
By default, rows are generated based on the view port size and those rows are reused while scrolling. Extra rows can be created while scrolling the DataGrid by using the [SfDataGrid.rowsCacheExtent]() property. You can set the rows cache extent to avoid the visible changes which are occurred due to re-using. For example, if you are showing the checkbox in a column and not set the rows using this property, checkbox state changes with the animation can be seen when vertical scrolling is performed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
By default, rows are generated based on the view port size and those rows are reused while scrolling. You can set the rowsCacheExtent
property to avoid the visible changes which are occurred due to re-using. For example, if you are showing the checkbox in a column and not set the rows using this property, checkbox state changes with the animation can be seen when vertical scrolling is performed.
The rowCacheExtent
property will create the additional rows internally with the existing visible rows which are already allocated based on view port size. So, rows to be reused will be increased.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Modified
Build Status: INPROGRESS 🔃 |
Build Status: INPROGRESS 🔃 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @Sangeetha-Raju ,
The changes are fine now.
Flutter/datagrid/scrolling.md
Outdated
## Increase row cache limit | ||
|
||
By default, rows are generated based on the view port size and those rows are reused while scrolling. You can set the [SfDataGrid.rowsCacheExtent]() property to avoid the visible changes which are occurred due to re-using. For example, if you are showing the checkbox in a column and not set the rows using this property, checkbox state changes with the animation can be seen when vertical scrolling is performed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
By default, rows are generated based on the view port size and these rows are reused while scrolling. You can set the SfDataGrid.rowsCacheExtent property to avoid the visible changes caused by re-using. For example, if you show the checkbox in a column without setting the rows using this property, checkbox state changes with animation can be seen when vertical scrolling is performed.
Flutter/datagrid/scrolling.md
Outdated
By default, rows are generated based on the view port size and those rows are reused while scrolling. You can set the [SfDataGrid.rowsCacheExtent]() property to avoid the visible changes which are occurred due to re-using. For example, if you are showing the checkbox in a column and not set the rows using this property, checkbox state changes with the animation can be seen when vertical scrolling is performed. | ||
|
||
The `rowsCacheExtent` property will create the additional rows internally with the existing visible rows which are already allocated based on view port size. So, rows to be reused will be increased. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The rowsCacheExtent
property will create the additional rows internally with the existing visible rows, which are already allocated based on view port size. So, the number of rows that will be reused will increase.
Build Status: INPROGRESS 🔃 |
Build Status: INPROGRESS 🔃 |
Description
Prepared UG document for rowsCacheExtent feature.