Issue with editable grid

Hi all ,
am working on Editable Grid, I Have Multiple rows in a grid while updating second row am getting below error(please find the screens hot)

for single row its working fine


OriginalPostID-227891

OriginalPostID-227891

  Discussion posts and replies are publicly visible

Parents
  • Yes, the variable is declared twice as mentioned by sikhivahan.
    Once in the load() part, and then again in the with() part.
    Always remember that: if you have created a local variable in with() part, then it cannot be used in saveInto. I mean you cannot save into it.
    That is the issue here.
    also check in the sub-interfaces euMobUpdateClearingContactTaskrow and euMobUpdateBusinessTaskrow. You may be passing a local variable declared in with() and trying to save in those interfaces which is causing the issue.
Reply
  • Yes, the variable is declared twice as mentioned by sikhivahan.
    Once in the load() part, and then again in the with() part.
    Always remember that: if you have created a local variable in with() part, then it cannot be used in saveInto. I mean you cannot save into it.
    That is the issue here.
    also check in the sub-interfaces euMobUpdateClearingContactTaskrow and euMobUpdateBusinessTaskrow. You may be passing a local variable declared in with() and trying to save in those interfaces which is causing the issue.
Children
No Data