I'm using Parsley framework. I'm trying to inject model in custom visual Tree component;
private var _model:Model
[Bindable]
public function get model():Model
{
return _model;
}
public function set model(value:Model):void
{
_model = value;
}
Build Config:
<Object id="customTree" type="{CustomTree}">
<Property name="model" idRef="model"/>
</Object>
Then I have use this tree in mxml:
<components:CustomTree
id="categoriesTree"
width="100%" height="100%"
labelField="@title"
right="0" bottom="0" left="0" top="10"
doubleClickEnabled="true"
maxHorizontalScrollPosition="250"
horizontalScrollPolicy="auto"
dragEnabled="true"
dropEnabled="true"
dataProvider="{model.dataHolder}"
/>
I had try override parent function and I have got an error. (model is null);
override protected function dragDropHandler(event:DragEvent):void
{
model.action = "drop"
}
I had set breakpoint in model setter and it was executed but model still null;
Where is the problem?