[flexcoders] Re: drag and drop in repeater control

2006-08-16 Thread deepu_verma
I tried the drag and drop with List and itemrenderer, but drag and drop does not seems to work if I am using the control inside a popup window. --- In flexcoders@yahoogroups.com, deepu_verma [EMAIL PROTECTED] wrote: The following code does not work for me to allow the Combobox to be dragged

[flexcoders] drag and drop in repeater control

2006-08-11 Thread deepu_verma
The following code does not work for me to allow the Combobox to be dragged and dropped inside the repeater control Is this the right approach, any help is appreciated. Thanks, Deepak mx:Repeater id=productRepeater recycleChildren=false mx:HBoxheight=50

[flexcoders] menu control in flex 2.0 beta 3

2006-05-24 Thread deepu_verma
Following is my code and I am trying to capture the change event. But it seems that the change event does not trigger for menu bar controls only. mx:MenuBar labelField=@label showRoot=false width=100% change={mainViewStackHelper.getSearchResultView(event)} mx:dataProvider mx:XMLList xmlns=

[flexcoders] update data through data service

2006-05-11 Thread deepu_verma
I am using the following code to update the Arraycollection binding with the Dataservice And I get the error variable x is not defined What I understand is the updated collection is not going to coldfusion co.isUpdate() is returning false. What am I missing? Thanks Flex code ===

[flexcoders] reply to messaged from outlook

2006-05-03 Thread deepu_verma
I am using outlook and gmail id to receive posts on flex group. How can I reply or post messages to the group from outlook. Thanks, Deepak -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] customized component

2006-05-01 Thread deepu_verma
Can a developer file a patent for customized developed component? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS

[flexcoders] Re: data service in craingorm

2006-04-30 Thread deepu_verma
was happening when you tried listening? Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of deepu_verma Sent: Friday, April 28, 2006 4:52 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] data service in craingorm I have

[flexcoders] Re: data service in craingorm

2006-04-30 Thread deepu_verma
I tried to modify the existing contact data service app , and the data is neither getting refreshed in the same session nor across multiple sessions, I am using Cf adapter . (The data is getting inserted into the database correctly) After adding a record the flex dump shows correctly the

[flexcoders] data service in craingorm

2006-04-28 Thread deepu_verma
I have declared the following two methods in my delegate and call them from the commands // //get the products public function fill():void { var call:Object = service.fill(modelLocator.productModel.ProductVersion);

[flexcoders] Data service method

2006-04-28 Thread deepu_verma
Which event will be fired after the data is pushed to the client for a dataservice coldfusion adapter? I tried message event but it does not seem to work -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] AS3 API generation

2006-04-27 Thread deepu_verma
Is there any application that is updated to generate the AS3 doc? (AS3 API for my classes) Thanks, Deepak -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

[flexcoders] Data service

2006-04-27 Thread deepu_verma
How to fit in the data service component into Craingorm framework. I have added a getDataService method to the service locator. Am not able to get the sync result in the command -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

[flexcoders] Flex2 dataservice composite primary key

2006-04-26 Thread deepu_verma
Is this a correct way to define the composite primary key destination id=product adapter ref=coldfusion-dao / properties metadata identity property=id/ identity property=productId/ /metadata -- Flexcoders Mailing List FAQ:

[flexcoders] Flex Mystic connectivity

2006-04-18 Thread deepu_verma
Hi All, I have installed flex and mystic on JRun server. What will be the flex configuration settings so as to access the cfc using remote object. On this page http://labs.macromedia.com/wiki/index.php/ColdFusion/Flex_Connectivity I was able to find the settings for Flex builder. --

[flexcoders] Re: dynamically creating a remote object

2006-03-23 Thread deepu_verma
/calling_a_webservice_purely_through_as.htm Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of deepu_verma Sent: Wednesday, March 22, 2006 6:50 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] dynamically creating a remote object How can I

[flexcoders] dynamically creating a remote object

2006-03-22 Thread deepu_verma
How can I dynamically create an instance of remote object in flex 1.5 I am trying the following testRemote = mx.core.Application.application.createClassObject(mx.servicetags.RemoteObject, text_mc, 0, {endpoint:http://dverma01.corp.adobe.com:8300/cfusion/flashservices/gateway/;,

[flexcoders] datagrid filter

2006-03-03 Thread deepu_verma
How can I filter data from a datagrid? Is there a function to filter data for the data provider? (I was able to find a Dataset component for Flash which has the capability to filter the data.) -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

[flexcoders] mx.control.alert

2006-03-02 Thread deepu_verma
Hi all, I am using mx.controls.Alert.show in flex 1.5 The text in the alert box is displayed with a vertical scroll bar. How can I increase the size of the alert box. Thanks, Deepak -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

[flexcoders] radio button group inside repeater

2006-03-01 Thread deepu_verma
Hi, When I create radio buttons inside a repeater control. The UI creats the all the radio button in a single group. Following is the code : mx:Repeater dataProvider={searchControlHelper.repeaterModel} id=searchControlRepeater recycleChildren=true mx:VBox

[flexcoders] sortCompareFunction

2006-02-15 Thread deepu_verma
How does sortcompare function workd for a data grid. I want to sort a date column for a datagrid in Flex 1.5 Thanks, Deepak -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] populate datagrid from object of object

2006-02-09 Thread deepu_verma
Hi, I am trying to populate a datagrid from object object as in the below example (this is a dummy example, i am getting the result from a VO) var arr = new Array() arr[0] = new Object() arr[0].j=10; arr[0].k=new Object() arr[0].k.l=20; mx:DataGrid dataProvider={arr} mx:columns

[flexcoders] Re: unsubscribe

2006-01-27 Thread deepu_verma
1. Login to yahoo group 2. Edit membership 3. Click on leave group --- In flexcoders@yahoogroups.com, [EMAIL PROTECTED] wrote: how to unsubscribe? the way written in footer doesn't work. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

[flexcoders] Re: Value objects

2006-01-25 Thread deepu_verma
] On Behalf Of deepu_verma Sent: Wednesday, January 25, 2006 1:46 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Value objects Thanks for the Reply But don't you think by declaring the variables as public we are defeating the object encapsulation concept. And moreover

[flexcoders] Value objects

2006-01-24 Thread deepu_verma
I am stuck up with how to map VO between flex and Coldfusion My AS class is import org.nevis.cairngorm.vo.ValueObject; class com.macromedia.webreqapp.vo.UserVO implements ValueObject { public static var registered:Boolean = Object.registerClass(webreqapp.webrequest.vo.user,

[flexcoders] Re: Value objects

2006-01-24 Thread deepu_verma
; } From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of deepu_verma Sent: Tuesday, January 24, 2006 5:58 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Value objects I am stuck up with how to map VO between flex and Coldfusion

[flexcoders] Re: microphone object in AS3

2006-01-24 Thread deepu_verma
help a lot. Thanks, Deepak --- In flexcoders@yahoogroups.com, Abdul Qabiz [EMAIL PROTECTED] wrote: What problem, are you facing? -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of deepu_verma Sent: Tuesday, January 24, 2006

[flexcoders] how does remote object works for coldfusion backend

2006-01-23 Thread deepu_verma
I am using the remote object with endpoint set to the coldfusion server on a different box. 1. How will the remote object work in this case (will the call to the remote server go from the flash client or it will use the flex proxy) 2.

[flexcoders] line break in the formitem label

2006-01-23 Thread deepu_verma
How can wrap the text for a form label? Here is an example mx:FormItem label=Tracking amp; Reporting Requirements required=true mx:HBox mx:TextArea id=reportingRequirement textAlign=left

[flexcoders] microphone object in AS3

2006-01-23 Thread deepu_verma
Any body tried to work with the microphone on AS3? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your group on the web, go to: