I bind them.
$$(‘propertyview’).bind($$(‘listview’));
I want update listview item and send JSON request when property element has changed.
I looked for onAfterEditStop. But there is nothing for id of row.
So how to do this?
I bind them.
$$(‘propertyview’).bind($$(‘listview’));
I want update listview item and send JSON request when property element has changed.
I looked for onAfterEditStop. But there is nothing for id of row.
So how to do this?
You can use this.save(); in the code of bound component. It will push its data back to master.
on:{
onAfterEditStop:function(){
this.save();
}
}
It’s worked. Thank you.