Hi.

I still cant get this to work the way I want it to.
Perhaps I should be more clear.

Here is the code for my component:

http://edencane.pastebin.com/f6ff71721

What I want to do is change the lable on the button of the form depending on 
whether the organisation object is null.

Thanks.

Kind regards.
Luke.

Luke Vanderfluit wrote:
> Hi Shaun.
> 
> That helped.
> Thanks bud.
> 
> Kr.
> Luke.
> 
> shaun wrote:
>> Luke Vanderfluit wrote:
>>> Hi.
>>>
>>> I have a component that displays a form.
>>> When the form displays I want to display different stuff based on whether a 
>>> property of an object that I send to the form is null or not.
>>>
>>> Im calling the form component from the parent like this:
>>> <OrgForm organisation="{organisation}"/>
>>>
>>> Now how do I access the properties of organisation inside the component 
>>> before 
>>> it displays?
>> You could set the visible attribute to false
>>
>>   <OrgForm organisation="{organisation}" visible="false" />
>>
>> then in your function set it to true once your UI logic has executed.
>>
>> [Bindable] //getter ommited.
>> public funciton set organisation(o:Organisation):void{
>>     _organisation = o;
>>
>>     changeForm(); //changes visibility to true.
>> }
>>
>> private var saveOrUpdate:String = "Update";
>>
>> private function changeForm():void{
>>   if (_organisation.organisationId == null) {
>>      saveOrUpdate = "Save";
>>   }
>>
>>    this.visible = true;
>> }
>>
>> cheers,
>>   - shaun
>>
>> ------------------------------------
>>
>> --
>> Flexcoders Mailing List
>> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
>> Search Archives: 
>> http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups Links
>>
>>
>>
> 
> 


-- 
Luke Vanderfluit
Analyst / Web Programmer
e3Learning.com.au
08 8221 6422

Reply via email to