How do I use reloadColumn()?

You must Login before you can answer or comment on any questions.

I've got some picker columns

var a = Titanium.createPickerColumn();
var b = Titanium.createPickerColumn();
var c = Titanium.createPickerColumn();
I've got some rows for each
a.addRow(Titanium.UI.createPickerRow({title: 1}));
b.addRow(Titanium.UI.createPickerRow({title: 2}));
c.addRow(Titanium.UI.createPickerRow({title: 3}));
I put them into a picker
thePicker = Titanium.UI.createPicker({
    selectionIndicator: true,
    top: 0,
    columns: [a, b, c]
});
How do I use reloadColumn() if i've added more rows to (any) column and i want it updated without changing the window? What's the syntax for getting the Titanium.UI.PickerColumn column object to put inside reloadColumn()? I just want to update a picker column! or even the whole picker if it has to come to that! Any help would be greatly appreciated!

1 Answer

Hello Alistair,

See this LINK,

I hope it will help you... Best Luck...

Your Answer

Think you can help? Login to answer this question!