description
Implement all versions of the Ti.UI.Picker. Original request for this functionality can be found here:
https://groups.google.com/forum/?fromgroups=#!topic/appc-ti-alloy/OS3XZrpwp1Q
Proposed snippet
Single Column
<Picker>
<PickerRow title="0"/>
<PickerRow title="1"/>
<PickerRow title="2"/>
<PickerRow title="3"/>
</Picker>
Multi-Column
<Picker>
<PickerColumn>
<PickerRow title="0"/>
<PickerRow title="1"/>
<PickerRow title="2"/>
<PickerRow title="3"/>
</PickerColumn>
<PickerColumn>
<PickerRow title="0"/>
<PickerRow title="1"/>
<PickerRow title="2"/>
<PickerRow title="3"/>
</PickerColumn>
<PickerColumn>
<PickerRow title="0"/>
<PickerRow title="1"/>
<PickerRow title="2"/>
<PickerRow title="3"/>
</PickerColumn>
</Picker>
Notes
* Let's create shorthand names that the parser can identify to make it even easier?
**
PickerColumn
->
Column
**
PickerRow
->
Row
<Picker>
<Column>
<Row title="0"/>
<Row title="1"/>
<Row title="2"/>
<Row title="3"/>
</Column>
</Picker>
Took a little longer due to finding and logging TIMOB-10895