i have an editable DataGrid, something like:

<mx:Datagrid editable="true" dataProvider="{arrayListPreferences}" id="preferencesGrid">
    <mx:columns>
        <mx:DataGridColumn header="col1" dataField="preference" editable="false"/>
        <mx:DataGridColumn header="col2" dataField="value" editable="true"/>
    </mx:columns>
</mx:Datagrid>

When the user edits the data there's a button that he clicks and calls a function that saves the data to a database, and in this function i have to validate the data before sending it. I want to use simple validators (NumberValidator, StringValidator, etc) but i don't know how to set the source of this validators to the specified rows in the second column.

link|improve this question

75% accept rate
feedback

3 Answers

up vote 6 down vote accepted
<mx:NumberValidator source="{preferencesGrid.selectedItem}" property="value" 
    integerError="Enter Integer value"
    minValue="18" maxValue="50" domain="int" 
    trigger="{saveButton}" triggerEvent="click"
    valid="saveData();"/>

Set the property of validator to the dataField of the desired column.

link|improve this answer
Right, that works fine, but how can i set the source to a desired column instead of using {preferencesGrid.selectedItem}? Thanks – Thiago Valle Dec 21 '09 at 19:31
I managed doing that by using preferencesGrid.dataProvider[] – Thiago Valle Dec 21 '09 at 20:11
feedback
<mx:DataGridColumn editable="true" itemRenderer="MyTextInputItemRenderer"/>



public class MyTextInputItemRenderer extends TextInput{
        private var validator:StringValidator;
        public function MyTextInputItemRenderer(){
            validator = new StringValidator;
            validator.minLength=0;
            validator.property = "text";
            validator.source = this;
        }
        override public function set data(value:Object):void{
            super.data = value;
            validator.validate();
        }
    }
link|improve this answer
feedback

I'm able to valide in response to a change event, per the adobe sample code and an itemRenderer, but what I really want to be able to do is it hightlight any cells which are blank. Reading the comments above, I've got validation working, but only on a single cell and even then, the no read highlighting or tool tip.

Is there a way to validate all the cells in a column?

        private function saveData():void {
            trace("saveData()");
        }

        private function saveData1():void {
            trace("saveData1()");
        }
    ]]>
</mx:Script>
<mx:DataGrid dataProvider="{initDG}"
    editable="true"
    height="200"
    id="dg"
    width="500">
    <mx:columns>
        <mx:DataGridColumn dataField="name"
            editorDataField="returnPN"
            headerText="Name"
            itemEditor="components.tiValidator"/>
        <mx:DataGridColumn dataField="phone"
            headerText="Phone"/>
        <mx:DataGridColumn dataField="email"
            headerText="Email"/>
    </mx:columns>
</mx:DataGrid>

<mx:StringValidator invalid="saveData1()"
    minLength="2"
    property="name"
    source="{dg.selectedItem}"
    trigger="{saveButton}"
    triggerEvent="click"
    valid="saveData();"/>
<mx:Button id="saveButton"/>

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.