set parent item property from relationship property oneditfinish event

hi i am try to set parent item property from code written in javascript on relationship item property onEditFinish event i am set property using parent.thisItem.setProperty(); but set property value is seen after refreshing parent item how to avoid refreshing parent  item .
Parents
  • Hello, It's possible to update the value of the parent property by refreshing directly from your method as seen in the sample below.
    parent.thisItem.setProperty("name", "edit");
    
    aras.uiReShowItem(parent.thisItem.getID(), parent.thisItem.getID());
    This saves the user the need to click the refresh button to see the updated property. Chris ___________________________________ Christopher Gillis Aras Labs Software Engineer
Reply
  • Hello, It's possible to update the value of the parent property by refreshing directly from your method as seen in the sample below.
    parent.thisItem.setProperty("name", "edit");
    
    aras.uiReShowItem(parent.thisItem.getID(), parent.thisItem.getID());
    This saves the user the need to click the refresh button to see the updated property. Chris ___________________________________ Christopher Gillis Aras Labs Software Engineer
Children
No Data