diff --git a/src/as/com/threerings/flex/CommandComboBox.as b/src/as/com/threerings/flex/CommandComboBox.as index 1aea191e..98a2d691 100644 --- a/src/as/com/threerings/flex/CommandComboBox.as +++ b/src/as/com/threerings/flex/CommandComboBox.as @@ -39,7 +39,7 @@ public class CommandComboBox extends ComboBox * The field of the selectedItem object used as the argument to the * command or function. If null, the entire selectedItem is passed as the argument. */ - public var argField :String; + public var dataField :String; /** * Create a command combobox. @@ -47,11 +47,11 @@ public class CommandComboBox extends ComboBox * @param cmdOrFn either a String, which will be the CommandEvent command to dispatch, * or a function, which will be called when changed. */ - public function CommandComboBox (cmdOrFn :* = null, argField :String = "data") + public function CommandComboBox (cmdOrFn :* = null, dataField :String = "data") { CommandButton.validateCmd(cmdOrFn); _cmdOrFn = cmdOrFn; - this.argField = argField; + this.dataField = dataField; addEventListener(ListEvent.CHANGE, handleChange); } @@ -73,14 +73,14 @@ public class CommandComboBox extends ComboBox } /** - * Handy function to lookup an option based on argField and set it as the selected item. + * Handy function to lookup an option based on dataField and set it as the selected item. * This probably only works for Array dataProviders. */ public function setSelectedValue (value :Object) :void { for (var ii :int = 0; ii < dataProvider.length; ++ii) { - var v :Object = (this.argField != null) ? - dataProvider[ii][this.argField] : dataProvider[ii]; + var v :Object = (this.dataField != null) ? + dataProvider[ii][this.dataField] : dataProvider[ii]; if (v == value) { this.selectedIndex = ii; return; @@ -92,12 +92,12 @@ public class CommandComboBox extends ComboBox } /** - * The value that will be passed to the command or function based on argField and the + * The value that will be passed to the command or function based on dataField and the * current selected item. */ public function getSelectedValue () :Object { - return (this.argField != null) ? this.selectedItem[this.argField] : this.selectedItem; + return (this.dataField != null) ? this.selectedItem[this.dataField] : this.selectedItem; } protected function handleChange (event :ListEvent) :void