vote up 0 vote down star

How to use validator controls like Required validator, integer validator etc in Air application? I tried to use them but I got this error:

Component declarations are not allowed here. (Note: visual children must implement mx.core.IUIComponent)

i have imported the validator like this...

import mx.validators.Validator;

and used like this

<mx:TextArea id="txtQuestCaption" change="txtQuestCaption_change(event)"/>
<mx:Validator id="reqValidator" source="txtQuestCaption">
</mx:Validator>

But i got that above error..

how to use validator in air ?

flag

18% accept rate

1 Answer

vote up 1 vote down check

It seems that this code is nested inside some container tag. Move the <mx:Validator/> tag out of the current position and place it directly within the root mxml tag. Non visual tags like Validator, Style etc should be added as the immediate children of the root mxml tag

<!-- wrong -->
<?xml version="1.0" encoding="utf-8"?>
<mx:Panel xmlns:mx="http://www.adobe.com/2006/mxml">
 <mx:Canvas>
  <mx:TextArea id="txtQuestCaption" change="txtQuestCaption_change(event)"/>
  <mx:Validator id="reqValidator" source="txtQuestCaption"/>
 </mx:Canvas>
</mx:Panel>

<!-- correct -->
<?xml version="1.0" encoding="utf-8"?>
<mx:Panel xmlns:mx="http://www.adobe.com/2006/mxml">
  <mx:Canvas>
    <mx:TextArea id="txtQuestCaption" change="txtQuestCaption_change(event)"/>
  </mx:Canvas>
  <mx:Validator id="reqValidator" source="txtQuestCaption"/>
</mx:Panel>
link|flag
Thank U Amarghosh...Its working ... Thanks for ur reply and for ur good example. – vineth Oct 29 at 13:54

Your Answer

Get an OpenID
or

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