Hi All, I am using editable grid to display records that are fetched

Hi All,

I am using editable grid to display records that are fetched using webservice.
one of the method returns 4000 records which slows down SAIL interface.
Any idea or workaround to overcome this issue?

OriginalPostID-175417

OriginalPostID-175417

  Discussion posts and replies are publicly visible

Parents
  • It seems like your filtered data is set as a with() variable (because it is being re-evaluated every time the user interacts with the filter(s)). In order to save that data, you will instead need to make the variable that holds the filtered data a rule input. (Note: although a load() variable would also persist changes, it would not save the changes when the user clicks the OOTB "Save Changes" link).

    The rule input should be re-evaluated in the saveInto of every filter the user might use.
Reply
  • It seems like your filtered data is set as a with() variable (because it is being re-evaluated every time the user interacts with the filter(s)). In order to save that data, you will instead need to make the variable that holds the filtered data a rule input. (Note: although a load() variable would also persist changes, it would not save the changes when the user clicks the OOTB "Save Changes" link).

    The rule input should be re-evaluated in the saveInto of every filter the user might use.
Children
No Data