[flexcoders] Capturing TabClick in mx:TabNavigator

2008-01-08 Thread Dharmendran A
Hi,

I need to capture TabClick event in mx:TabNavigator i.e., When user clicks on 
the tab ( i have three tabs in my UI) each time, i need to do some validation. 

Can anyone help me.

Thanks
Dharmendran A




  

Looking for last minute shopping deals?  
Find them fast with Yahoo! Search.  
http://tools.search.yahoo.com/newsearch/category.php?category=shopping

[flexcoders] Re: Throwing DataSyncException Error - Flex Data Management

2007-06-07 Thread Dharmendran A
Hi,

Any idea for this bug. I didnot get any reply..

Pls help me out..

Thanks
Dharmendran A


- Original Message 
From: Dharmendran A [EMAIL PROTECTED]
To: flex coders flexcoders@yahoogroups.com
Sent: Wednesday, June 6, 2007 10:59:32 AM
Subject: Throwing DataSyncException Error - Flex Data Management


Hi,
 
I have built a sample .MXML application for testing Flex Data Management. In 
client iam using DataService to connect to the destination like, 
mx:DataService id=ds destination=crm.employee/
 
Iam able to view all the records using ds.fill(). Iam able to add a new 
employee record using addItem() of the ArrayCollection and by calling 
ds.commit()
 
I could see data synchronization happening in multiple clients.
 
Now, the problem is iam not able to modify or delete any record. Iam getting an 
error 
 
Throwing DataSyncException when trying to update employee id=4
Throwing DataSyncException when trying to delete employee id=4
 
The code looks like this:
var emp:Employee=contacts.getItemAt(4) as Employee;
ds.autoCommit=false;
emp.firstName=Dharmendran;
emp.lastName=Arumugam;
ds.commit();

Pls help me.
 
Thanks,
Darmendran A
 
 
 



Fussy? Opinionated? Impossible to please? Perfect. Join Yahoo!'s user panel and 
lay it on us.


 

Never miss an email again!
Yahoo! Toolbar alerts you the instant new Mail arrives.
http://tools.search.yahoo.com/toolbar/features/mail/

[flexcoders] Selecting a bunch of cells in DataGrid.

2007-06-06 Thread Dharmendran A
hi,

I need to select a bunch of cells (like one in excel) in datagrid, press CTRL+C 
and export to Excel.

Any Idea how to select cells in flex data grid??

dharmendran A


  

Shape Yahoo! in your own image.  Join our Network Research Panel today!   
http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7 



[flexcoders] Throwing DataSyncException Error - Flex Data Management

2007-06-05 Thread Dharmendran A
Hi,

I have built a sample .MXML application for testing Flex Data Management. In 
client iam using DataService to connect to the destination like,
mx:DataService id=ds destination=crm.employee/

Iam able to view all the records using ds.fill(). Iam able to add a new 
employee record using addItem() of the ArrayCollection and by calling 
ds.commit()

I could see data synchronization happening in multiple clients.

Now, the problem is iam not able to modify or delete any record. Iam getting an 
error 

Throwing DataSyncException when trying to update employee id=4
Throwing DataSyncException when trying to delete employee id=4

The code looks like this:
var emp:Employee=contacts.getItemAt(4) as Employee;
ds.autoCommit=false;
emp.firstName=Dharmendran;
emp.lastName=Arumugam;
ds.commit();

Pls help me.

Thanks,
Darmendran A


   

Be a better Globetrotter. Get better travel answers from someone who knows. 
Yahoo! Answers - Check it out.
http://answers.yahoo.com/dir/?link=listsid=396545469

[flexcoders] HttpFlexSession Register in web.xml

2007-06-04 Thread Dharmendran A
Hi,

Iam trying to access a RemoteObject (java class) thru Flex and iam getting this 
error while calling thru Flex UI. (I have a datagrid dataprovider bound to 
event.result.)

[Flex] [WARN] HttpFlexSession has not been registered as a listener in web.xml f
or this application so no events will be dispatched to FlexSessionAttributeListe
ners or FlexSessionBindingListeners. To correct this, register flex.messaging.Ht
tpFlexSession as a listener in web.xml.



when i cheked the web.xml there is already an entry 

listener
listener-classflex.messaging.HttpFlexSession/listener-class
/listener

So, pls help me what i need to do...further



Dharmendran A


  

Shape Yahoo! in your own image.  Join our Network Research Panel today!   
http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7 



Re: [flexcoders] HttpFlexSession Register in web.xml

2007-06-04 Thread Dharmendran A
Hi,

Thanks for your reply. I could able to resolve the problem. flex-messaging.jar, 
flex-messaging-common.jar, flex-messaging-opt.jar and flex-messaging-req.jar 
were missing in WEB-INF\lib folder.

Yes Iam using FDS and Iam using Tomcat 5.5

Thanks,
Dharmendran A




- Original Message 
From: Peter Farland [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Monday, June 4, 2007 7:22:00 PM
Subject: RE: [flexcoders] HttpFlexSession Register in web.xml

I need more info to help you out. Are you using FDS? What J2EE application 
server are you using? Have you confirmed that you have flex-messaging. jar in 
/WEB-INF/lib? How did you install FDS? Did you start with a clean war file or 
did you try to merge a new one over an older one?




From: [EMAIL PROTECTED] ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf 
Of Dharmendran A
Sent: Monday, June 04, 2007 6:22 AM
To: flex coders
Subject: [flexcoders] HttpFlexSession Register in web.xml


Hi,
 
Iam trying to access a RemoteObject (java class) thru Flex and iam getting this 
error while calling thru Flex UI. (I have a datagrid dataprovider bound to 
event.result. )
 
[Flex] [WARN] HttpFlexSession has not been registered as a listener in web.xml f
or this application so no events will be dispatched to FlexSessionAttribut 
eListe
ners or FlexSessionBindingL isteners. To correct this, register flex.messaging. 
Ht
tpFlexSession as a listener in web.xml.
 
 
 
when i cheked the web.xml there is already an entry 
 
listener
listener-classflex.messaging. HttpFlexSession/listener-class
/listener
 
So, pls help me what i need to do...further

 
 
Dharmendran A



Get the Yahoo! toolbar and be alerted to new email wherever you're surfing. 



   

Boardwalk for $500? In 2007? Ha! Play Monopoly Here and Now (it's updated for 
today's economy) at Yahoo! Games.
http://get.games.yahoo.com/proddesc?gamekey=monopolyherenow  

[flexcoders] For Loop problem..

2007-05-27 Thread Dharmendran A
Hi,

Iam facing a peculiar problem in flex. The For loop works in a reverse way.

for(var i:Number=0; i3; i++)
{
Alert.show(i.toString());
}

Prints 2,1,0 

??

Could anyone help pls...

Dharmendran A


   
You
 snooze, you lose. Get messages ASAP with AutoCheck
in the all-new Yahoo! Mail Beta.
http://advision.webevents.yahoo.com/mailbeta/newmail_html.html

[flexcoders] Re: For Loop problem..

2007-05-27 Thread Dharmendran A
Silly...

Got it...


Dharmendran A


- Original Message 
From: Dharmendran A [EMAIL PROTECTED]
To: flex coders flexcoders@yahoogroups.com
Sent: Monday, May 28, 2007 10:05:35 AM
Subject: For Loop problem..


 
Hi,
 
Iam facing a peculiar problem in flex. The For loop works in a reverse way.
 
for(var i:Number=0; i3; i++)
{
Alert.show(i.toString());
}
 
Prints 2,1,0 
 
??
 
Could anyone help pls...
 
Dharmendran A



Be a better Globetrotter. Get better travel answers from someone who knows.
Yahoo! Answers - Check it out.


   
Building
 a website is a piece of cake. Yahoo! Small Business gives you all the tools to 
get online.
http://smallbusiness.yahoo.com/webhosting 

[flexcoders] Drawing an Arrow in Flex

2007-05-25 Thread Dharmendran A
Hi,

Iam working on Flex Charting components and i need to draw a KPI Tree View. 

The problem is how can i draw an arrow using flex 2.0??


thanks
dharmendran a


   
Looking
 for a deal? Find great prices on flights and hotels with Yahoo! FareChase.
http://farechase.yahoo.com/

[flexcoders] KPI Tree View.

2007-05-24 Thread Dharmendran A
Hi,

Does anyone know whether Flex 2.0.1 has KPI Tree View control ??

dharmendran a


   
Luggage?
 GPS? Comic books? 
Check out fitting gifts for grads at Yahoo! Search
http://search.yahoo.com/search?fr=oni_on_mailp=graduation+giftscs=bz

Re: [flexcoders] Locking Last row in a Flex Data Grid

2007-05-24 Thread Dharmendran A
This is working fine if there are no horizantal scroll bars in the grid, but in 
my case many columns exists, which needs to be scrolled(i have set 
horizantalscrollpolicy as auto). In this case, this fixed last row also needs 
to scrolled.

The similiar requirement is also for Last Column to be fixed and scrollable.

pls help,,

dharmendran a



- Original Message 
From: Dharmendran A [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, May 24, 2007 10:36:12 AM
Subject: Re: [flexcoders] Locking Last row in a Flex Data Grid


Got It !!! Thanks :)))


 
- Original Message 
From: Harish Sivaramakrishnan [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, May 23, 2007 5:46:37 PM
Subject: Re: [flexcoders] Locking Last row in a Flex Data Grid

http://blogs. adobe.com/ aharui/2007/ 04/datagrid_ footers.html

I suppose this is what u are looking for 




On 5/23/07, Flexing... [EMAIL PROTECTED] com wrote: 
One approach can be:


http://flex- apollo.blogspot. com/2007/ 05/adding- total-row- at-end-of- 
datagrid. html




On May 23, 2007, at 2:46 PM, Dharmendran A wrote:




hi,
 

Does anybody know how to lock a last row in a datagrid. I know that 
lockedRowCount can lock all the rows abouve the specified index, but I need to 
lock the last row in data grid in addition to header row. This last row will 
show the Total value for each column and it should be locked 
 

dharmendran a



Ready for the edge of your seat? Check out tonight's top picks on Yahoo! TV. 






 





You snooze, you lose. Get messages ASAP with AutoCheck
in the all-new Yahoo! Mail Beta.


 

Finding fabulous fares is fun.  
Let Yahoo! FareChase search your favorite travel sites to find flight and hotel 
bargains.
http://farechase.yahoo.com/promo-generic-14795097

[flexcoders] Locking Last row in a Flex Data Grid

2007-05-23 Thread Dharmendran A
hi,

Does anybody know how to lock a last row in a datagrid. I know that 
lockedRowCount can lock all the rows abouve the specified index, but I need to 
lock the last row in data grid in addition to header row. This last row will 
show the Total value for each column and it should be locked

dharmendran a


   
Ready
 for the edge of your seat? 
Check out tonight's top picks on Yahoo! TV. 
http://tv.yahoo.com/

Re: [flexcoders] Locking Last row in a Flex Data Grid

2007-05-23 Thread Dharmendran A
Got It !!! Thanks :)))



- Original Message 
From: Harish Sivaramakrishnan [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Wednesday, May 23, 2007 5:46:37 PM
Subject: Re: [flexcoders] Locking Last row in a Flex Data Grid

http://blogs. adobe.com/ aharui/2007/ 04/datagrid_ footers.html

I suppose this is what u are looking for 




On 5/23/07, Flexing... [EMAIL PROTECTED] com wrote:
One approach can be:


http://flex- apollo.blogspot. com/2007/ 05/adding- total-row- at-end-of- 
datagrid. html




On May 23, 2007, at 2:46 PM, Dharmendran A wrote:




hi,
 

Does anybody know how to lock a last row in a datagrid. I know that 
lockedRowCount can lock all the rows abouve the specified index, but I need to 
lock the last row in data grid in addition to header row. This last row will 
show the Total value for each column and it should be locked 
 

dharmendran a



Ready for the edge of your seat? Check out tonight's top picks on Yahoo! TV.









   
Get
 the Yahoo! toolbar and be alerted to new email wherever you're surfing.
http://new.toolbar.yahoo.com/toolbar/features/mail/index.php

[flexcoders] 0E-8 problem in Flex 1.5

2007-01-25 Thread Dharmendran A
Hi,

Iam getting a strange problem in Flex Grid. The problem is 0E-8. I have a 
column ReceivedQuantity(decimal datatype) in the Database(SQL Server). This 
data is returned as a resultset using a web-service, converted in to a XML and 
assigned to flex grid. The bug is if i have a value 0 (actually it is .00) 
in the ReceivedQuantity column, then instead of getting the actual value of 0, 
iam getting 0E-8. If the value is greater than 0 then iam getting the correct 
value.

It might be problem with SQL Server also. If anyone could help me pls reply..

Dharmendran A


 

Expecting? Get great news right away with email Auto-Check. 
Try the Yahoo! Mail Beta.
http://advision.webevents.yahoo.com/mailbeta/newmail_tools.html 

Re: [flexcoders] How to change the Link icon at run time

2006-10-09 Thread Dharmendran A



In the private scope of the class embed the icon like,[Embed(source="icons/printDown.png")]  var image_printDown :String;  In doPrint() event, assign the abouve icon to PrintLink like,  PrintLink.icon = image_printDown;hope this helps.dharmendranAkash [EMAIL PROTECTED] wrote:   HI all, I want to change the icon of this link at the run time say on the click event. Can anybody plz. Tell me how to do this? mx:Link id="PrintLink" icon="@Embed('images/PrintUp.png')" x="10" y="468" width="59" height="25" fontWeight="bold" fontStyle="normal"
 fontSize="14" fontFamily="Courier" color="#FF" toolTip="Print Report" enabled="false" click="doPrint();"/  Thanks  regards,  Akash DisclaimerThis email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to
 whom it is addressed. If you have received this communication in error, please immediately notify the [EMAIL PROTECTED]ness.com and destroy the original message. The recipient should check this email and any attachments for the presence of viruses. Ness has taken every reasonable precaution to minimize this risk, and accepts no liability for any damage caused by any virus transmitted in this email. Ness reserves the rights to monitor and review the content of all messages sent to or from this E-mail address, and store them on the Ness E-mail system.   
		Do you Yahoo!? Everyone is raving about the  all-new Yahoo! Mail.
__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___