[flexcoders] Validator._init method

2006-08-31 Thread bharg.flex
Hi, I am creating forms items at runtime using createChild method, and I need to validate the controls in the form. How to use validator subclasses to validate the newly created form? Maybe a call to the Validator._init method ? But what are the parameters that need to go in?? Regards

[flexcoders] Re: Validator._init method

2006-08-31 Thread bharg.flex
your component in MXML so that it can have the Validator tag? Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bharg.flex Sent: Wednesday, August 30, 2006 11:04 PM To: flexcoders@yahoogroups.com Subject: [flexcoders

[flexcoders] validating editable columns in the datagrid

2006-08-23 Thread bharg.flex
Hi, I have a datagrid, which has some 2 columns editable. In order to validate those two columns, I am using the cellrenderer property of the grid. The validators are working fine, but my problem is,if I enter a wrong data in the editable field, I get the red boundary of the validator giving

[flexcoders] Re: scrolling issue in flex

2006-08-22 Thread bharg.flex
Hi , I tried getting the vposition value to a variable and reseting back. I am able to get the vposition value to a variable, but I am not able to reset it. This is how I did var pos:Number; pos = grdTest.vPosition; grdTest.executeBindings(); grdTest.vPosition = pos; Am I doing

[flexcoders] Connecting to webservice - Could not load WSDL error

2006-08-22 Thread bharg.flex
Hi Currently we are using RemoteObject for making calls to the business logic methods. The business logic is writen in .Net and the remote calls are routed through flashremoting. Instead of using remote object we would want to use the webservice and get away with flashremoting layer. So all