Skip to content
This repository has been archived by the owner on Dec 21, 2021. It is now read-only.

Commit

Permalink
AUI-2038 Datatable PropertyList Demo update
Browse files Browse the repository at this point in the history
  • Loading branch information
blzaugg authored and mairatma committed Dec 23, 2015
1 parent 31e47db commit 8985006
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions demos/datatable/propertylist.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,14 @@ <h1>AlloyUI - Datatable property list</h1>
{
editor: new Y.RadioCellEditor({
editable: true,
options: [ 'Yes', 'No' ]
options: {
yes: 'Yes',
no: 'No',
maybe: 'Maybe'
}
}),
name: 'Radio',
value: 'Yes'
value: 'no'
},
{
editor: new Y.DropDownCellEditor({
Expand All @@ -61,7 +65,7 @@ <h1>AlloyUI - Datatable property list</h1>
}
}),
name: 'Select',
value: 'Apple'
value: 'cherry'
},
{
editor: new Y.DropDownCellEditor({
Expand All @@ -75,7 +79,7 @@ <h1>AlloyUI - Datatable property list</h1>
}
}),
name: 'Select multiple',
value: 'apple'
value: 'banana,kiwi'
},
{
name: 'Text',
Expand Down

0 comments on commit 8985006

Please sign in to comment.