RE: [flexcoders] Re: Unable to use custom cell renders

2006-02-26 Thread Matt Chotin
I think you'll probably want to write your own ComboBox cell renderer if
you're trying to provide the list of options dynamically.  The explorer
had an example in it in the cellrenderer directory.  Just copy that and
edit away.

Matt

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Jeremy Rottman
Sent: Friday, February 24, 2006 9:02 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Unable to use custom cell renders

Do you know the FQO for the combobox cell render. I searched the
livedocs and could not find it.

--- In flexcoders@yahoogroups.com, Sauro, Nick [EMAIL PROTECTED] wrote:

 I had a similar problem, and using the fully qualified object
 name(mx.controls) worked.
 
  
 
 
 
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
On
 Behalf Of Jeremy Rottman
 Sent: Friday, February 24, 2006 11:37 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Unable to use custom cell renders
 
  
 
 I have this datagrid
 
 mx:DataGrid x=10 y=67 id=ASDG width=90% height=65%
   mx:columns
 mx:DataGridColumn headerText=Name
 columnName=FLD_FULLNAME /
 mx:DataGridColumn headerText=Company
 columnName=FLD_USEREMAIL/
 mx:DataGridColumn headerText=Address
 columnName=FLD_ADDRESS/
 mx:DataGridColumn headerText=Agent Id visible=false
 columnName=FLD_USERLOGIN/
 mx:DataGridColumn headerText=Side
 columnName={agentType}
 cellRenderer=ComboBoxCellRenderer /
   /mx:columns
 /mx:DataGrid
 
 In it I am trying to use the cellerRenderer ComboboxCellerRenderer,
 and populate it with the bindable array agentType. I have imported the
 mx tools below. Does anyone know why I wouldnt be able to use this
 custom cell render? It tells me Access of undefined proptery
 'ComboBoxCellRenderer.
 
 import mx.controls.listclasses.*;
 import mx.controls.*;
 
 
 
 
 
 
 --
 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 
 
 Web site design development

http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+

site+design+developmentw2=Computer+software+developmentw3=Software+des

ign+and+developmentw4=Macromedia+flexw5=Software+development+best+prac
 ticec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ  
 
 Computer software development

http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=We

b+site+design+developmentw2=Computer+software+developmentw3=Software+d

esign+and+developmentw4=Macromedia+flexw5=Software+development+best+pr
 acticec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw  
 
 Software design and development

http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=

Web+site+design+developmentw2=Computer+software+developmentw3=Software

+design+and+developmentw4=Macromedia+flexw5=Software+development+best+
 practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ  
 
 Macromedia flex

http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+

developmentw2=Computer+software+developmentw3=Software+design+and+deve

lopmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=1
 66.sig=OO6nPIrz7_EpZI36cYzBjw  
 
 Software development best practice

http://groups.yahoo.com/gads?t=msk=Software+development+best+practice;

w1=Web+site+design+developmentw2=Computer+software+developmentw3=Softw

are+design+and+developmentw4=Macromedia+flexw5=Software+development+be
 st+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw  
 
  
 
  
 
 
 
 YAHOO! GROUPS LINKS 
 
  
 
 *  Visit your group flexcoders
 http://groups.yahoo.com/group/flexcoders  on the web.
 
 *  To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] 
 
 *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
 Service 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



 





--
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: Unable to use custom cell renders

2006-02-24 Thread Jeremy Rottman
Do you know the FQO for the combobox cell render. I searched the
livedocs and could not find it.

--- In flexcoders@yahoogroups.com, Sauro, Nick [EMAIL PROTECTED] wrote:

 I had a similar problem, and using the fully qualified object
 name(mx.controls) worked.
 
  
 
 
 
 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of Jeremy Rottman
 Sent: Friday, February 24, 2006 11:37 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Unable to use custom cell renders
 
  
 
 I have this datagrid
 
 mx:DataGrid x=10 y=67 id=ASDG width=90% height=65%
   mx:columns
 mx:DataGridColumn headerText=Name
 columnName=FLD_FULLNAME /
 mx:DataGridColumn headerText=Company
 columnName=FLD_USEREMAIL/
 mx:DataGridColumn headerText=Address
 columnName=FLD_ADDRESS/
 mx:DataGridColumn headerText=Agent Id visible=false
 columnName=FLD_USERLOGIN/
 mx:DataGridColumn headerText=Side
 columnName={agentType}
 cellRenderer=ComboBoxCellRenderer /
   /mx:columns
 /mx:DataGrid
 
 In it I am trying to use the cellerRenderer ComboboxCellerRenderer,
 and populate it with the bindable array agentType. I have imported the
 mx tools below. Does anyone know why I wouldnt be able to use this
 custom cell render? It tells me Access of undefined proptery
 'ComboBoxCellRenderer.
 
 import mx.controls.listclasses.*;
 import mx.controls.*;
 
 
 
 
 
 
 --
 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 
 
 Web site design development
 http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+
 site+design+developmentw2=Computer+software+developmentw3=Software+des
 ign+and+developmentw4=Macromedia+flexw5=Software+development+best+prac
 ticec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ  
 
 Computer software development
 http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=We
 b+site+design+developmentw2=Computer+software+developmentw3=Software+d
 esign+and+developmentw4=Macromedia+flexw5=Software+development+best+pr
 acticec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw  
 
 Software design and development
 http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=
 Web+site+design+developmentw2=Computer+software+developmentw3=Software
 +design+and+developmentw4=Macromedia+flexw5=Software+development+best+
 practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ  
 
 Macromedia flex
 http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+
 developmentw2=Computer+software+developmentw3=Software+design+and+deve
 lopmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=1
 66.sig=OO6nPIrz7_EpZI36cYzBjw  
 
 Software development best practice
 http://groups.yahoo.com/gads?t=msk=Software+development+best+practice;
 w1=Web+site+design+developmentw2=Computer+software+developmentw3=Softw
 are+design+and+developmentw4=Macromedia+flexw5=Software+development+be
 st+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw  
 
  
 
  
 
 
 
 YAHOO! GROUPS LINKS 
 
  
 
 *  Visit your group flexcoders
 http://groups.yahoo.com/group/flexcoders  on the web.
 
 *  To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] 
 
 *  Your use of Yahoo! Groups is subject to the Yahoo! Terms of
 Service 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

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





RE: [flexcoders] Re: Unable to use custom cell renders

2006-02-24 Thread Sauro, Nick










No, I dont unfortunately, you might
be better off creating your own renderer, they are pretty simple to make, shouldnt
be much of a problem.











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeremy Rottman
Sent: Friday, February 24, 2006
12:02 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Unable
to use custom cell renders





Do you know the FQO for the
combobox cell render. I searched the
livedocs and could not find it.

--- In flexcoders@yahoogroups.com, Sauro,
Nick [EMAIL PROTECTED] wrote:

 I had a similar problem, and using the fully
qualified object
 name(mx.controls) worked.
 
 
 
 
 
 From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On
 Behalf Of Jeremy Rottman
 Sent: Friday, February 24, 2006 11:37 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Unable to use custom
cell renders
 
 
 
 I have this datagrid
 
 mx:DataGrid x=10
y=67 id=ASDG width=90%
height=65%

mx:columns

mx:DataGridColumn headerText=Name
 columnName=FLD_FULLNAME /

mx:DataGridColumn headerText=Company
 columnName=FLD_USEREMAIL/

mx:DataGridColumn headerText=Address
 columnName=FLD_ADDRESS/

mx:DataGridColumn headerText=Agent Id visible=false
 columnName=FLD_USERLOGIN/

mx:DataGridColumn headerText=Side
 columnName={agentType}
 cellRenderer=ComboBoxCellRenderer
/

/mx:columns
 /mx:DataGrid
 
 In it I am trying to use the cellerRenderer
ComboboxCellerRenderer,
 and populate it with the bindable array
agentType. I have imported the
 mx tools below. Does anyone know why I
wouldnt be able to use this
 custom cell render? It tells me Access of
undefined proptery
 'ComboBoxCellRenderer.
 
 import mx.controls.listclasses.*;
 import mx.controls.*;
 
 
 
 
 
 
 --
 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 
 
 Web site design development
 http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+

site+design+developmentw2=Computer+software+developmentw3=Software+des
 ign+and+developmentw4=Macromedia+flexw5=Software+development+best+prac

ticec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ 
 
 Computer software development
 http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=We

b+site+design+developmentw2=Computer+software+developmentw3=Software+d

esign+and+developmentw4=Macromedia+flexw5=Software+development+best+pr

acticec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw 
 
 Software design and development
 http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=

Web+site+design+developmentw2=Computer+software+developmentw3=Software

+design+and+developmentw4=Macromedia+flexw5=Software+development+best+

practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ 
 
 Macromedia flex
 http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+

developmentw2=Computer+software+developmentw3=Software+design+and+deve

lopmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=1
 66.sig=OO6nPIrz7_EpZI36cYzBjw 
 
 Software development best practice
 http://groups.yahoo.com/gads?t=msk=Software+development+best+practice
 w1=Web+site+design+developmentw2=Computer+software+developmentw3=Softw

are+design+and+developmentw4=Macromedia+flexw5=Software+development+be

st+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw 
 
 
 
 
 
 
 
 YAHOO! GROUPS LINKS 
 
 
 
 * Visit your
group flexcoders
 http://groups.yahoo.com/group/flexcoders
 on the web.
   
 * To
unsubscribe from this group, send an email to:
 
[EMAIL PROTECTED]

mailto:[EMAIL PROTECTED] 
   
 * Your use of
Yahoo! Groups is subject to the Yahoo! Terms of
 Service 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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  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.