Hi Group,
I have a customize container component in which i am using one sub-component.
The customize container has one overriden method save(), i want to call this
method in subcomponent. Can this be possible?
my code looks like this -
GraphDex.mxml
<CustPanel>
<script>
overrides public void save(){
//plz ignore syntex
}
</script>
<Dex id="dexone"/>
</CustPanel>
Here I want to call mentioned save() method in Dex component that contain some
graphs, so on click event of Dex graphs i want to call save functionality.
As being new bee,Please suggest if my approach is wrong.