[flexcoders] itemRenderer=mx.controls.CheckBox

2006-07-20 Thread mepaninaresh
I am pretty sure this is a bug. Every time a checkbox is selected the other one gets reset. The only conclusion I have reached is I am using aXMLListCollection as a dataProvider. Any help would be welcome. PS. My actual code is more complicated than below!! ?xml version="1.0"

[flexcoders] Repeater XML Attribute

2006-06-06 Thread mepaninaresh
Hi, I am trying to retrieve a certain XML node using the attribute value, tried various syntax. Just can't get it to work. Sample code below. Any ideas? Thanks for any help. Amount Type="Number_of_Records" Units="1" Format="Actual"256/AmountAmount Type="Number_of_Critical_Changes" Units="1"

[flexcoders] Chart

2006-06-02 Thread mepaninaresh
I have a mx:Repeater id=list dataProvider={myHomePageAC} mx:GridRow width=778 paddingLeft=4 mx:GridItem mx:RadioButton label={list.currentItem.Name}/ /mx:GridItem mx:GridItem mx:LinkButton label={list.currentItem.Amount[0]} textAlign=center / /mx:GridItem . I

[flexcoders] Flex 2 Beta 3

2006-05-16 Thread mepaninaresh
Still trying to upgrade my working application from Flex 2 Beta 2. I have a very unfriendly error message. Type was not found or was not a compile-time constant: IFlexModuleFactory. No idea where in the source this relates to. Any ideas, Naresh. -- Flexcoders Mailing List FAQ:

[flexcoders] Flex 2 Beta 3

2006-05-15 Thread mepaninaresh
I tried to upgrade my application from Flex 2 Beta 2. I have a few of these errors :- Access of possibly undefined property result through a reference with static type mx.rpc.http.mxml:HTTPService. Any ideas? -- Flexcoders Mailing List FAQ:

[flexcoders] Flex 2 Beta 3

2006-05-15 Thread mepaninaresh
I tried to upgrade my application from Flex 2 Beta 2. This code gives me an error :- mx:Effect mx:WipeDown name=showDetail duration=300/ mx:WipeUp name=hideDetail duration=300/ /mx:Effect Could not resolve mx:Effect to a component implementation. Any ideas? -- Flexcoders

[flexcoders] Flex 2 Beta 2 XML Attribute

2006-05-04 Thread mepaninaresh
I had this working on Flex 2 Beta 1 mx:Label text={nf0.format (myContentData1.GraydonUKePatrolSchema.ePatrolDetailsPage.Amount. (Type=='Number_of_Records'))} / But Flex 2 Beta 2 gives me an error. Data binding will not be able to detect assignments to Type. So I've tried the below.

[flexcoders] Flex 2 Beta 2

2006-05-03 Thread mepaninaresh
Just imported my application from Flex 2 Beta 1. Few problems. 1. Could not resolve mx:cellRenderer to a component implementation. 2. Could not resolve mx:Link to a component implementation. 3. Context help does not appear. Had a great link

[flexcoders] Re: Flex 2 Beta 2

2006-05-03 Thread mepaninaresh
/Flex:Beta_1_to_Beta_2_Changes search the page for 'Link' and 'cellRenderer' Link -- LinkButton cellRenderer -- itemRenderer or search the docs that come with FB beta2. regards, Muzak - Original Message - From: mepaninaresh [EMAIL PROTECTED] To: flexcoders@yahoogroups.com

[flexcoders] Flex 2 Builder 2

2006-05-03 Thread mepaninaresh
The chart explorer does not seem to work. Path problems with the build- samples.bat file and Path problems with the explorer.html file. Regards, Naresh. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Flash plugin

2006-04-26 Thread mepaninaresh
I can only view my html with my swf with flash plugin 8.5.0.212. If I upgrade to 8.5.0.246 I just get a blank page. Any Ideas. Thought I'll show the board of directors, not impressed with a blank screen. Running Flex builder 2 beta 1. PS only 5 days left before it expires, what happens

[flexcoders] Re: Find Function

2006-04-06 Thread mepaninaresh
to display text that isn't the column name. You need to use a custom comparator function for that, the default sort is going to be based on the columnName. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mepaninaresh Sent: Tuesday

[flexcoders] Re: Find Function

2006-04-04 Thread mepaninaresh
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mepaninaresh Sent: Monday, April 03, 2006 8:51 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Find Function I can't seem to get complex xml elements working. Example 1 works. private function findFirstName():void { createSort

[flexcoders] Re: DataGrid Find Function

2006-04-03 Thread mepaninaresh
, Matt Chotin [EMAIL PROTECTED] wrote: Setting the selectedIndex should work. Then you can set the vPosition to scroll to it. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mepaninaresh Sent: Friday, March 31, 2006 5:55 AM

[flexcoders] Find Function

2006-04-03 Thread mepaninaresh
The findFirst always returns a result by default, even when no match is found. Default being the first record. It applies to findLast and findAny. Is it possible to capture this ? Thanking you for any help. -- Flexcoders Mailing List FAQ:

[flexcoders] Find Function

2006-04-03 Thread mepaninaresh
I can't seem to get complex xml elements working. Example 1 works. private function findFirstName():void { createSort(); var cursor:IViewCursor = myXMLListCollection.getCursor(); var values:Object = {FreeText: nameInput.text}; cursor.findFirst(values); } Example 2 does not work. private

[flexcoders] DataGrid Find Function

2006-03-31 Thread mepaninaresh
I have implemented the find function, all works great. Is there any way of setting the selectedIndex of the DataGrid.I want to highlight and position? Regards, Naresh. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] format data

2006-03-28 Thread mepaninaresh
I have an xml element which looks like :- Date Type=Last_Log_on Format=CCYYMMDD![CDATA[20051119]]/Date I want to display this as for example :- 19/11/2005 I have tried various things, nothing seems to work, sample of my code below. mx:GridItem mx:Label