[flexcoders] I want to render gantt chart using datagrid

2009-07-25 Thread vajralavenkat
Hi,

I want to render gantt chart using datagrid with this data.

Approval Initiation FirstPatient LastPatient LastPatient Lock Report

18-Feb-02  29-Aug-03 11-Sep-03 14-Jul-06 23-Apr-08 11-Apr-08 8-May-08   
18-Feb-02 30-Sep-03 30-Sep-03 31-Jul-06 8-Feb-08 15-Apr-08 7-May-08 

can u send me the code to render a sample gantt chart that have one pipe with 4 
bars

thanks,
Subba Reddy



Re: [flexcoders] Re: LCDS fallback and firewalls which inspect packets

2009-07-25 Thread Johannes Nel
Ok, so this was an interesting one in the end
In our dev and testing environments which are hosted on the amazon cloud
this was failing since the kernel did not have syn cookies compiled into the
kernel. Once we moved to a production enviroment (also debian but hosted
with a different company) it all started working.
Automagically.

On Wed, Jul 15, 2009 at 2:56 PM, Tom Chiverton tom.chiver...@halliwells.com
 wrote:



  On Tuesday 14 Jul 2009, Johannes Nel wrote:
  the https idea is worth a try. Thanks for the input.

 Or set up a site-to-site VPN.

 --
 Helping to biannually differentiate revolutionary vertical unique
 web-enabled
 environments as part of the IT team of the year, '09 and '08

 

 This email is sent for and on behalf of Halliwells LLP.

 Halliwells LLP is a limited liability partnership registered in England and
 Wales under registered number OC307980 whose registered office address is at
 Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB. A list
 of members is available for inspection at the registered office together
 with a list of those non members who are referred to as partners. We use the
 word ?partner? to refer to a member of the LLP, or an employee or consultant
 with equivalent standing and qualifications. Regulated by the Solicitors
 Regulation Authority.

 CONFIDENTIALITY

 This email is intended only for the use of the addressee named above and
 may be confidential or legally privileged. If you are not the addressee you
 must not read it and must not use any information contained in nor copy it
 nor inform any person other than Halliwells LLP or the addressee of its
 existence or contents. If you have received this email in error please
 delete it and notify Halliwells LLP IT Department on 0870 365 2500.

 For more information about Halliwells LLP visit www.Halliwells.com.
  




-- 
j:pn
\\no comment


[flexcoders] problem using mx:Glow and mx:Box

2009-07-25 Thread mitchgrrt
I'm trying to put a Glow around a Box, and have the glow show around the 
outside of the Box's borders but not the inside.  Here's part of the code:

mx:Glow id=glowImage duration=1000 
alphaFrom=1.0 alphaTo=0.3 
blurXFrom=0.0 blurXTo=50.0 
blurYFrom=0.0 blurYTo=50.0 
inner=false
color=0x00FF00/
 
mx:Box height=100 width=200 mouseDownEffect={glowImage} 
   borderColor=black borderStyle=solid 

mx:Label text=hello /
/mx:Box

The Glow shows up both inside and outside the Box's borders, even though I set 
inner=false.  Does somebody know how to get it to show just outside the box?  
Thanks.



[flexcoders] Measuring the width of a label

2009-07-25 Thread ivansebastiansurya
Hi everyone,

I'm having a problem regarding measuring the width of a Label control.
In my item renderer, I need to display a list of labels, but the number of 
labels per row depends on how many of them fit within one row.
To do that, I need to actually measure the width of the label created prior to 
being added as a child of my renderer.
Anyone has any idea how to do that?

I need something like:

var label:Label = new Label();
label.text = Test label;
// Then I need to measure the width of the created label.

Cheers and thanks in advance for reading my post.

Ivan.



[flexcoders] Re: Sideways text

2009-07-25 Thread Amy
--- In flexcoders@yahoogroups.com, Gordon Smith gosm...@... wrote:

 If you use an embedded font I think you can rotate Flex 3 text components.
 
 But if you want to use a device font, you would have to develop custom 
 components that use FTE or TLF instead of TextField to render their text, and 
 you'd have to require Flash Player 10. Looking at how Flex 4 implements its 
 new text components would probably be useful if you're going to do this.

I think an easier way is to just set the blendMode on the text component to 
layer.

-Amy



[flexcoders] custom validate email with tooltip

2009-07-25 Thread yonghan79
Hi all,does anyone ever before create custom validators for emails?For example 
i'm typing my email,when i don't type the @ then the tooltip will show up and 
display you are missing the @,when i don't type the .com,the tooltip will 
display you are missing the domain...Do anyone mind to point me how to do 
it?Thanks a lot..