Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am developing an iOS app using appcelerator and I am trying to use JavaScript factories to seperate design (UI) from functions.

I made a component that shows a textfield in a fancy way (code located in ui.js). You can view the code here: http://pastie.org/2188537.

I then call the component like this on another page.

var desc = ambadooUI.createTextField({

    hinttext: 'Label (Personal/Work/Gmail...)',
    vertical: 10,
    container: 'top'

});

The problem is now that I cannot access the data/value of the textfield. How can I do it? Am I forced to use custom events?

Thankful for all input!

share|improve this question

1 Answer

up vote 2 down vote accepted

just add the textField object as a property of the object you are returning.

for example at line 44, ui.js, you can do something like

// Return the finished button
top.text_field = textfield;
return top;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.