Skip to content

Commit

Permalink
Allow direct entering of position.
Browse files Browse the repository at this point in the history
  • Loading branch information
pneff committed Dec 10, 2008
1 parent acc26fb commit 6deb27d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions scrumboard/public/static/stories/list.js
Expand Up @@ -61,13 +61,16 @@
label: 'Story points',
sortable: true,
editor: new YAHOO.widget.TextboxCellEditor({
validator:YAHOO.widget.DataTable.validateNumber,
validator: YAHOO.widget.DataTable.validateNumber,
asyncSubmitter: saveValue})
},
{ key: 'position',
label: 'Position',
sortable: true,
sorted: true
sorted: true,
editor: new YAHOO.widget.TextboxCellEditor({
validator: YAHOO.widget.DataTable.validateNumber,
asyncSubmitter: saveValue})
},
{ key: 'delete',
label: ' ',
Expand Down

0 comments on commit 6deb27d

Please sign in to comment.