[flexcoders] Re: Datagrid columns resize

2005-09-12 Thread digital_eyezed
This does it:


http://www.macromedia.com/2003/mxml"; 
backgroundColor="#FF">




  

  
  
  
  

  


  

  
  
  
  

  



--- In flexcoders@yahoogroups.com, "Joe" <[EMAIL PROTECTED]> wrote:
> I have a datagrid on top of another datagrid. The bottom grid is 
for 
> totals of the top grid. When I resize the a column in the top grid 
I 
> want the bottom grid to adopt the new column width. Is this 
possible to 
> do? I know I can call a function using columnStretch. So I guess I 
> would need to know the correct actionscript syntax. Thanks




 Yahoo! Groups Sponsor ~--> 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~-> 

--
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:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Re: Datagrid columns resize

2005-09-12 Thread digital_eyezed
Sorry, remove the cellrenderer:


http://www.macromedia.com/2003/mxml"; 
backgroundColor="#FF">




  

  
  
  
  

  


  

  
  
  
  

  



--- In flexcoders@yahoogroups.com, "digital_eyezed" 
<[EMAIL PROTECTED]> wrote:
> This does it:
> 
> 
> http://www.macromedia.com/2003/mxml"; 
> backgroundColor="#FF">
> 
> 
> 
>  alternatingRowColors="[#CC,#FF]" columnStretch="setWidth
> (event);" marginBottom="0">
>   
> 
>cellRenderer="MyTotal"/>
>   
>   
>   
> 
>   
> 
>  vGridLineColor="#FF" hGridLineColor="#FF" id="myGrid2" 
> columnStretch="setWidth(event);" headerHeight="0" rowCount="1">
>   
> 
>   
>   
>   
>   
> 
>   
> 
> 
> 
> --- In flexcoders@yahoogroups.com, "Joe" <[EMAIL PROTECTED]> wrote:
> > I have a datagrid on top of another datagrid. The bottom grid is 
> for 
> > totals of the top grid. When I resize the a column in the top 
grid 
> I 
> > want the bottom grid to adopt the new column width. Is this 
> possible to 
> > do? I know I can call a function using columnStretch. So I guess 
I 
> > would need to know the correct actionscript syntax. Thanks





 Yahoo! Groups Sponsor ~--> 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~-> 

--
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:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Re: Datagrid columns resize

2005-09-13 Thread digital_eyezed
Can you explain a bit more about what you need?

Thanks

Iain

--- In flexcoders@yahoogroups.com, [EMAIL PROTECTED] wrote:
> Thank you, that's perfect. Would you be able to tell me the 
correct syntax 
> to get compute the colums in the datagrid? thanks
> 
> 
> 
> 
> CONFIDENTIALITY STATEMENT - This message and any files or text 
attached to 
> it are intended only for the recipients named above, and contain 
> information that may be confidential or privileged.  If you are 
not an 
> intended recipient, you must not read, copy, use, or disclose this 
> communication.  Please also notify the sender by replying to this 
message, 
> and then delete all copies of it from your system.  Thank you.
> 
> 
> 
> "digital_eyezed" <[EMAIL PROTECTED]> 
> Sent by: flexcoders@yahoogroups.com
> 09/12/2005 03:26 PM
> Please respond to
> flexcoders@yahoogroups.com
> 
> 
> To
> flexcoders@yahoogroups.com
> cc
> 
> Subject
> [flexcoders] Re: Datagrid columns resize
> 
> 
> 
> 
> 
> 
> Sorry, remove the cellrenderer:
> 
> 
> http://www.macromedia.com/2003/mxml"; 
> backgroundColor="#FF">
> 
> 
> 
>  alternatingRowColors="[#CC,#FF]" columnStretch="setWidth
> (event);" marginBottom="0">
>   
> 
>   
>   
>   
>   
> 
>   
> 
>  vGridLineColor="#FF" hGridLineColor="#FF" id="myGrid2" 
> columnStretch="setWidth(event);" headerHeight="0" rowCount="1">
>   
> 
>   
>   
>   
>   
> 
>   
> 
> 
> 
> --- In flexcoders@yahoogroups.com, "digital_eyezed" 
> <[EMAIL PROTECTED]> wrote:
> > This does it:
> > 
> > 
> > http://www.macromedia.com/2003/mxml"; 
> > backgroundColor="#FF">
> > 
> > 
> > 
> >  > alternatingRowColors="[#CC,#FF]" columnStretch="setWidth
> > (event);" marginBottom="0">
> >   
> > 
> >> cellRenderer="MyTotal"/>
> >   
> >   
> >   
> > 
> >   
> > 
> >  > vGridLineColor="#FF" hGridLineColor="#FF" id="myGrid2" 
> > columnStretch="setWidth(event);" headerHeight="0" rowCount="1">
> >   
> > 
> >   
> >   
> >   
> >   
> > 
> >   
> > 
> > 
> > 
> > --- In flexcoders@yahoogroups.com, "Joe" <[EMAIL PROTECTED]> 
wrote:
> > > I have a datagrid on top of another datagrid. The bottom grid 
is 
> > for 
> > > totals of the top grid. When I resize the a column in the top 
> grid 
> > I 
> > > want the bottom grid to adopt the new column width. Is this 
> > possible to 
> > > do? I know I can call a function using columnStretch. So I 
guess 
> I 
> > > would need to know the correct actionscript syntax. Thanks
> 
> 
> 
> 
> 
> 
> --
> 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




 Yahoo! Groups Sponsor ~--> 
Most low income households are not online. Help bridge the digital divide today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~-> 

--
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:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[flexcoders] Re: Datagrid columns resize

2005-09-13 Thread digital_eyezed
Hi,

I tend to do this by adding another element to the dataprovider 
which has the totals, then you use the same dataprovider for the 
second dataGrid but use the columnName of the totals to display them.

I have modified your code below to show this.

--- In flexcoders@yahoogroups.com, [EMAIL PROTECTED] wrote:
> I have a data grid with three columns.  NAME  AGE and WEIGHT. I 
want to be 
> able to get the total of the age and weight columns and place them 
in the 
> bottom row which you showed me how to do 
> previously. Thanks.
> 
> 
> http://www.macromedia.com/2003/mxml";>
>  
>  
> 
> 
> 
> 
>  
>   >
>  
>  
>   {TestSource.testinfo}
> 
>   
>   
>textAlign="right" />
>textAlign="right"/>
>   
> 
>   
>  

> {TestSource.totals}
> 
>   
> 
> 
> 
>   
> 
>   
>  
> 
> 
> 
> 
> 
> 
> name 1 
> 32 
> 200 
> 
> 
> name 2 
> 40 
> 100 
> 
> 
> name 3 
> 23 
> 150 
> 
> 
> name 2 
> 55 
> 330 
> 
> 
> Total Weight:
> 780
> 
> 
>  
> 
> 
> CONFIDENTIALITY STATEMENT - This message and any files or text 
attached to 
> it are intended only for the recipients named above, and contain 
> information that may be confidential or privileged.  If you are 
not an 
> intended recipient, you must not read, copy, use, or disclose this 
> communication.  Please also notify the sender by replying to this 
message, 
> and then delete all copies of it from your system.  Thank you.
> 
> 
> 
> "digital_eyezed" <[EMAIL PROTECTED]> 
> Sent by: flexcoders@yahoogroups.com
> 09/13/2005 12:50 AM
> Please respond to
> flexcoders@yahoogroups.com
> 
> 
> To
> flexcoders@yahoogroups.com
> cc
> 
> Subject
> [flexcoders] Re: Datagrid columns resize
> 
> 
> 
> 
> 
> 
> Can you explain a bit more about what you need?
> 
> Thanks
> 
> Iain
> 
> --- In flexcoders@yahoogroups.com, [EMAIL PROTECTED] wrote:
> > Thank you, that's perfect. Would you be able to tell me the 
> correct syntax 
> > to get compute the colums in the datagrid? thanks
> > 
> > 
> > 
> > 
> > CONFIDENTIALITY STATEMENT - This message and any files or text 
> attached to 
> > it are intended only for the recipients named above, and contain 
> > information that may be confidential or privileged.  If you are 
> not an 
> > intended recipient, you must not read, copy, use, or disclose 
this 
> > communication.  Please also notify the sender by replying to 
this 
> message, 
> > and then delete all copies of it from your system.  Thank you.
> > 
> > 
> > 
> > "digital_eyezed" <[EMAIL PROTECTED]> 
> > Sent by: flexcoders@yahoogroups.com
> > 09/12/2005 03:26 PM
> > Please respond to
> > flexcoders@yahoogroups.com
> > 
> > 
> > To
> > flexcoders@yahoogroups.com
> > cc
> > 
> > Subject
> > [flexcoders] Re: Datagrid columns resize
> > 
> > 
> > 
> > 
> > 
> > 
> > Sorry, remove the cellrenderer:
> > 
> > 
> > http://www.macromedia.com/2003/mxml"; 
> > backgroundColor="#FF">
> > 
> > 
> > 
> >  > alternatingRowColors="[#CC,#FF]" columnStretch="setWidth
> > (event);" marginBottom="0">
> >   
> > 
> >   
> >   
> >   
> >   
> > 
> >   
> > 
> >  > vGridLineColor="#FF" hGridLineColor="#FF" id="myGrid2" 
> > columnStretch="setWidth(event);" headerHeight="0" rowCount="1">
> >   
> > 
> >   
> >   
> >   
> >   
> > 
> >   
> > 
> > 
> > 
> > --- In flexcoders@yahoogroups.com, "digital_eyezed" 
> > <[EMAIL PROTECTED]> wrote:
> > > This does it:
> > > 
> > > 
> > > http://www.macromedia.com/2003/mxml"; 
> > > backgroundColor="#FF">
> > > 
> > > 
> > > 
> > >  > > alternatingRowColors="[#CC,#FF]" 
columnStretch="setWidth
> > > (event);" marginBottom="0">
> > >   
> > > 
> &g

[flexcoders] Re: Datagrid columns resize

2005-09-13 Thread digital_eyezed
For Clarity:


http://www.macromedia.com/2003/mxml"; 
backgroundColor="#FF">





  

  
  
  

  


  

  
  
  

  



And the XML:




name 1
32
200
Total Weight
780


name 2
40
100




name 3
23
150




name 2
55
330






--- In flexcoders@yahoogroups.com, "digital_eyezed" 
<[EMAIL PROTECTED]> wrote:
> Hi,
> 
> I tend to do this by adding another element to the dataprovider 
> which has the totals, then you use the same dataprovider for the 
> second dataGrid but use the columnName of the totals to display 
them.
> 
> I have modified your code below to show this.
> 
> --- In flexcoders@yahoogroups.com, [EMAIL PROTECTED] wrote:
> > I have a data grid with three columns.  NAME  AGE and WEIGHT. I 
> want to be 
> > able to get the total of the age and weight columns and place 
them 
> in the 
> > bottom row which you showed me how to do 
> > previously. Thanks.
> > 
> > 
> > http://www.macromedia.com/2003/mxml";>
> >  
> >  
> > 
> > 
> > 
> > 
> >  
> >   > >
> >  
> >  
> >   {TestSource.testinfo}
> > 
> >   
> >   
> >> textAlign="right" />
> >> textAlign="right"/>
> >   
> > 
> >   
> >  
>  vGridLineColor="#FF" hGridLineColor="#FF" id="myGrid2" 
> columnStretch="setWidth(event);" headerHeight="0" rowCount="1">
> > {TestSource.totals}
> > 
> >   
> > 
> > 
> > 
> >   
> > 
> >   
> >  
> > 
> > 
> > 
> > 
> > 
> > 
> > name 1 
> > 32 
> > 200 
> > 
> > 
> > name 2 
> > 40 
> > 100 
> > 
> > 
> > name 3 
> > 23 
> > 150 
> > 
> > 
> > name 2 
> > 55 
> > 330 
> > 
> > 
> > Total Weight:
> > 780
> > 
> > 
> >  
> > 
> > 
> > CONFIDENTIALITY STATEMENT - This message and any files or text 
> attached to 
> > it are intended only for the recipients named above, and contain 
> > information that may be confidential or privileged.  If you are 
> not an 
> > intended recipient, you must not read, copy, use, or disclose 
this 
> > communication.  Please also notify the sender by replying to 
this 
> message, 
> > and then delete all copies of it from your system.  Thank you.
> > 
> > 
> > 
> > "digital_eyezed" <[EMAIL PROTECTED]> 
> > Sent by: flexcoders@yahoogroups.com
> > 09/13/2005 12:50 AM
> > Please respond to
> > flexcoders@yahoogroups.com
> > 
> > 
> > To
> > flexcoders@yahoogroups.com
> > cc
> > 
> > Subject
> > [flexcoders] Re: Datagrid columns resize
> > 
> > 
> > 
> > 
> > 
> > 
> > Can you explain a bit more about what you need?
> > 
> > Thanks
> > 
> > Iain
> > 
> > --- In flexcoders@yahoogroups.com, [EMAIL PROTECTED] wrote:
> > > Thank you, that's perfect. Would you be able to tell me the 
> > correct syntax 
> > > to get compute the colums in the datagrid? thanks
> > > 
> > > 
> > > 
> > > 
> > > CONFIDENTIALITY STATEMENT - This message and any files or text 
> > attached to 
> > > it are intended only for the recipients named above, and 
contain 
> > > information that may be confidential or privileged.  If you 
are 
> > not an 
> > > intended recipient, you must not read, copy, use, or disclose 
> this 
> > > communication.  Please also notify the sender by replying to 
> this 
> > message, 
> > > and then delete all copies of it from your system.  Thank you.
> > > 
> > > 
> > > 
> > > "digital_eyezed" <[EMAIL PROTECTED]> 
> > > Sent by: flexcoders@yahoogroups.com
> > > 09/12/2005 03:26 PM
> > > Please respond to
&g

Re: [flexcoders] Re: Datagrid columns resize

2005-09-12 Thread joe . g . james




Thank you, that's perfect. Would you
be able to tell me the correct syntax to get compute the colums in the
datagrid? thanks




CONFIDENTIALITY STATEMENT - This message and any files or text attached
to it are intended only for the recipients named above, and contain information
that may be confidential or privileged.  If you are not an intended
recipient, you must not read, copy, use, or disclose this communication.
 Please also notify the sender by replying to this message, and then
delete all copies of it from your system.  Thank you.





"digital_eyezed"
<[EMAIL PROTECTED]> 
Sent by: flexcoders@yahoogroups.com
09/12/2005 03:26 PM



Please respond to
flexcoders@yahoogroups.com





To
flexcoders@yahoogroups.com


cc



Subject
[flexcoders] Re: Datagrid
columns resize








Sorry, remove the cellrenderer:



backgroundColor="#FF">




alternatingRowColors="[#CC,#FF]" columnStretch="setWidth
(event);" marginBottom="0">
      
            
                  
                  
                  
                  
            
      


vGridLineColor="#FF" hGridLineColor="#FF" id="myGrid2"

columnStretch="setWidth(event);" headerHeight="0" rowCount="1">
      
            
                  
                  
                  
                  
            
      



--- In flexcoders@yahoogroups.com, "digital_eyezed" 
<[EMAIL PROTECTED]> wrote:
> This does it:
> 
> 
> 
> backgroundColor="#FF">
> 
> 
> 
> 
> alternatingRowColors="[#CC,#FF]" columnStretch="setWidth
> (event);" marginBottom="0">
>       
>             
>                   
> cellRenderer="MyTotal"/>
>                   
>                   
>                   
>             
>       
> 
> 
> vGridLineColor="#FF" hGridLineColor="#FF"
id="myGrid2" 
> columnStretch="setWidth(event);" headerHeight="0"
rowCount="1">
>       
>             
>                   
>                   
>                   
>                   
>             
>       
> 
> 
> 
> --- In flexcoders@yahoogroups.com, "Joe" <[EMAIL PROTECTED]>
wrote:
> > I have a datagrid on top of another datagrid. The bottom grid
is 
> for 
> > totals of the top grid. When I resize the a column in the top

grid 
> I 
> > want the bottom grid to adopt the new column width. Is this 
> possible to 
> > do? I know I can call a function using columnStretch. So I guess

I 
> > would need to know the correct actionscript syntax. Thanks





 Yahoo! Groups Sponsor ~-->

Most low income households are not online. Help bridge the digital divide
today!
http://us.click.yahoo.com/cd_AJB/QnQLAA/TtwFAA/nhFolB/TM
~->


--
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:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 









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



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









Re: [flexcoders] Re: Datagrid columns resize

2005-09-13 Thread joe . g . james




I have a data grid with three columns.
 NAME  AGE and WEIGHT. I want to be able to get the total of
the age and weight columns and place them in the bottom row which you showed
me how to do 
previously. Thanks.



 
 




  
 
 
 
  {TestSource.testinfo}
    
      
      
      
      
      
    
  
  
  
    
      
        
        
        
      
        
  
        






name 1  
     
32    
   
200  
     


name 2  
     
40    
   
100  
     


name 3  
     
23    
   
150  
     


name 2  
     
55    
   
330  
     


        


CONFIDENTIALITY STATEMENT - This message and any files or text attached
to it are intended only for the recipients named above, and contain information
that may be confidential or privileged.  If you are not an intended
recipient, you must not read, copy, use, or disclose this communication.
 Please also notify the sender by replying to this message, and then
delete all copies of it from your system.  Thank you.





"digital_eyezed"
<[EMAIL PROTECTED]> 
Sent by: flexcoders@yahoogroups.com
09/13/2005 12:50 AM



Please respond to
flexcoders@yahoogroups.com





To
flexcoders@yahoogroups.com


cc



Subject
[flexcoders] Re: Datagrid
columns resize








Can you explain a bit more about what you need?

Thanks

Iain

--- In flexcoders@yahoogroups.com, [EMAIL PROTECTED] wrote:
> Thank you, that's perfect. Would you be able to tell me the 
correct syntax 
> to get compute the colums in the datagrid? thanks
> 
> 
> 
> 
> CONFIDENTIALITY STATEMENT - This message and any files or text 
attached to 
> it are intended only for the recipients named above, and contain 
> information that may be confidential or privileged.  If you are

not an 
> intended recipient, you must not read, copy, use, or disclose this

> communication.  Please also notify the sender by replying to
this 
message, 
> and then delete all copies of it from your system.  Thank you.
> 
> 
> 
> "digital_eyezed" <[EMAIL PROTECTED]> 
> Sent by: flexcoders@yahoogroups.com
> 09/12/2005 03:26 PM
> Please respond to
> flexcoders@yahoogroups.com
> 
> 
> To
> flexcoders@yahoogroups.com
> cc
> 
> Subject
> [flexcoders] Re: Datagrid columns resize
> 
> 
> 
> 
> 
> 
> Sorry, remove the cellrenderer:
> 
> 
> 
> backgroundColor="#FF">
> 
> 
> 
> 
> alternatingRowColors="[#CC,#FF]" columnStretch="setWidth
> (event);" marginBottom="0">
>       
>             
>                   
>                   
>                   
>                   
>             
>       
> 
> 
> vGridLineColor="#FF" hGridLineColor="#FF"
id="myGrid2" 
> columnStretch="setWidth(event);" headerHeight="0"
rowCount="1">
>       
>             
>                   
>                   
>                   
>                   
>             
>       
> 
> 
> 
> --- In flexcoders@yahoogroups.com, "digital_eyezed" 
> <[EMAIL PROTECTED]> wrote:
> > This does it:
> > 
> > 
> > 
> > backgroundColor="#FF">
> > 
> > 
> > 
> > 
> > alternatingRowColors="[#CC,#FF]" columnStretch="setWidth
> > (event);" marginBottom="0">
> >       
> >             
> >                  

> > cellRenderer="MyTotal"/>
> >                  

> >                  

> >                  

> >             
> >       
> > 
> > 
> > vGridLineColor="#FF" hGridLineColor="#FF"
id="myGrid2" 
> > columnStretch="setWidth(event);" headerHeight="0"
rowCount="1">
> >       
> >             
> >                  

> >                  

> >                  

> >                  

> >             
> >       
> > 
> > 
> > 
> > --- In flexcoders@yahoogroups.com, "Joe" <[EMAIL PROTECTED]>

wrote:
> > > I have a datagrid on top of another datagrid. The bottom
grid 
is 
> > for 
> > > totals of the top grid. When I resize the a column in the
top 
> grid 
> > I 
> > > want the bottom grid to adopt the new column width. Is this

> > possible to 
> > > do? I know I can call a function using columnStretch. So
I 
guess 
> I 
> > > would need to know the correct actionscript syntax. Thanks
> 
> 
> 
> 
> 
> 
> --
> Flexcoders Mailing List
> FAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: http://www.mail-arch

RE: [flexcoders] Re: Datagrid columns resize

2005-09-13 Thread Tracy Spratt










You could create a “global”
variable (instance member) to act as the dataProvider for the totals DataGrid. 
It would be an array of objects, with properties for each column.

 

Loop over the dataProvider, do the
calculations, and update the variable in the result handler, or on cellEdit if
the dg is editable.

 

Tracy

 









From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf
Of [EMAIL PROTECTED]
Sent: Tuesday, September 13, 2005
1:05 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re:
Datagrid columns resize



 


I have a data grid with three columns.  NAME  AGE
and WEIGHT. I want to be able to get the total of the age and weight columns
and place them in the bottom row which you showed me how to do 
previously.
Thanks. 

 
 
 

 






 
 

  
  
 

 
{TestSource.testinfo}

 
   
 
     
 
     
 
     
 
     
 
     
 
   
 
 
 

 
 
 
   
 
     
 
       
 
       
 
       
 
     
 
       
 
 
 
      






 


name
1         
32
        
200
        




name
2         
40
        
100
        




name
3         
23
        
150
        




name
2         
55
        
330
        




 
      


CONFIDENTIALITY STATEMENT - This message and any files or text attached to it
are intended only for the recipients named above, and contain information that
may be confidential or privileged.  If you are not an intended recipient,
you must not read, copy, use, or disclose this communication.  Please also
notify the sender by replying to this message, and then delete all copies of it
from your system.  Thank you. 




 
  
  "digital_eyezed"
  <[EMAIL PROTECTED]> 
  Sent
  by: flexcoders@yahoogroups.com 
  09/13/2005 12:50 AM 
  
   

Please
respond to
flexcoders@yahoogroups.com

   
  
  
  
  
  
   

To


flexcoders@yahoogroups.com 

   
   

cc


 

   
   

Subject


    [flexcoders] Re: Datagrid columns resize

   
  
   
  
   

 


 

   
  
  
  
 





Can
you explain a bit more about what you need?

Thanks

Iain

--- In flexcoders@yahoogroups.com,
[EMAIL PROTECTED] wrote:
> Thank you, that's perfect. Would you be able
to tell me the 
correct syntax 
> to get compute the colums in the datagrid?
thanks
> 
> 
> 
> 
> CONFIDENTIALITY STATEMENT - This message and
any files or text 
attached to 
> it are intended only for the recipients named
above, and contain 
> information that may be confidential or
privileged.  If you are 
not an 
> intended recipient, you must not read, copy,
use, or disclose this 
> communication.  Please also notify the
sender by replying to this 
message, 
> and then delete all copies of it from your
system.  Thank you.
> 
> 
> 
> "digital_eyezed"
<[EMAIL PROTECTED]> 
> Sent by: flexcoders@yahoogroups.com
> 09/12/2005 03:26 PM
> Please respond to
> flexcoders@yahoogroups.com
> 
> 
> To
> flexcoders@yahoogroups.com
> cc
> 
> Subject
> [flexcoders] Re: Datagrid columns resize
> 
> 
> 
> 
> 
> 
> Sorry, remove the cellrenderer:
> 
> 
> 
> backgroundColor="#FF">
> 
> 
> 
> 
>
alternatingRowColors="[#CC,#FF]" columnStretch="setWidth
> (event);" marginBottom="0">
>       
>            

>            
      
>            
      
>            
      
>            
      
>            

>       
> 
> 
> vGridLineColor="#FF"
hGridLineColor="#FF" id="myGrid2" 
> columnStretch="setWidth(event);"
headerHeight="0" rowCount="1">
>       
>            

>            
      
>            
      
>            
      
>            
      
>            

>       
> 
> 
> 
> --- In flexcoders@yahoogroups.com,
"digital_eyezed" 
> <[EMAIL PROTECTED]> wrote:
> > This does it:
> > 
> > 
> > 
> > backgroundColor="#FF">
> > 
> > 
> > 
> > 
> >
alternatingRowColors="[#CC,#FF]" columnStretch="setWidth
> > (event);"
marginBottom="0">
> >       
> >          
  
> >          
        
> > cellRenderer="MyTotal"/>
> >          
        
> >          
        
> >          
        
> >          
  
> >       
> > 
> > 
> > vGridLineColor="#FF"
hGridLineColor="#FF" id="myGrid2" 
> >
columnStretch="setWidth(event);" headerHeight="0"
rowCount="1">
> >       
> >          
  
> >          
        
> >          
        
> >          
        
> >