[flexcoders] lockedcolumncount

2006-08-31 Thread geiger947
has anyone been able to get the lockedcolumncount to work on a 
datagrid. I have it set, but the columns always resize to fit in the 
width of the grid. Is there some trick to this ?

There used to be an example on the labs site, but it is gone now.





--
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] Error 1065

2006-08-17 Thread geiger947
I get an error very inconsistently when I build. One second, I can 
debug and play, I can make no changes other than adding some space 
in the mxml file and I will get this error. I have seen other 
references to this error, but in my case, there is no variable name. 
so I have no way of tracing this down. 

anyone with some idea of where to look would be really appreciated.

ReferenceError: Error #1065: Variable  is not defined.
at global/flash.utils::getDefinitionByName()
at mx.utils::DescribeTypeCache$/describeType()
at mx.utils::ObjectUtil$/getClassInfo()
at mx.controls::DataGrid/::generateCols()
at 
mx.controls::DataGrid/mx.controls:DataGrid::collectionChangeHandler()
at mx.controls.listClasses::ListBase/set dataProvider()
at mx.controls::DataGrid/set dataProvider()
at mx.core::Container/createComponentFromDescriptor()
at mx.core::Container/createComponentsFromDescriptors()
at mx.containers::ViewStack/::instantiateSelectedChild()
at 
mx.containers::ViewStack/mx.containers:ViewStack::commitProperties()
at 
mx.containers::TabNavigator/mx.containers:TabNavigator::commitPropert
ies()
at mx.core::UIComponent/validateProperties()
at mx.managers::LayoutManager/::validateProperties()
at mx.managers::LayoutManager/::doPhasedInstantiation()
at Function/http://adobe.com/AS3/2006/builtin::apply()
at mx.core::UIComponent/::callLaterDispatcher2()
at mx.core::UIComponent/::callLaterDispatcher()







--
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: Sample project for CRUD type application

2006-08-16 Thread geiger947
It works one way - from the datasource to the text property. 

I am comming to flex as a VB programmer and I was looking to create 
a setup that was more like the traditional bound recordset type 
system. 

What I did instead was create my own datasource that has the concept 
of selectedItem and all the other things I need. Then I had to 
extend all the controls to add in binding inside the controls (so I 
just set dataProvider={mydatasource} dataPath=fieldIwant on the 
control.

took a little extra work and I had to learn more of the framework 
that I anticipated (also had some help from some experts). But it is 
working well now and I have to write about 1/2 the code I would have 
the other way.

--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] 
wrote:

 On Monday 31 July 2006 17:50, Douglas Knudsen wrote:
  mx:Binding source={ myModel.foo } 
destination=myTextControl.text /
  mx:Binding source={myTextControl.text} 
destination=myModel.foo /
  mx:Text id=myTextControl /
 
 Does
 mx:Text id=myTextControl text={myModel.foo} /
 not work ?
 
 -- 
 Tom Chiverton
 
 
 
 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 St James's Court Brown Street Manchester M2 
2JF.  A list of members is available for inspection at the 
registered office. Any reference to a partner in relation to 
Halliwells LLP means a member of Halliwells LLP. Regulated by the 
Law Society.
 
 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 8008.
 
 For more information about Halliwells LLP visit www.halliwells.com.








--
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] calling a method using a string

2006-08-10 Thread geiger947

Can I call a method on another class using a string? in as2 you used 
to be able to call otherclass[method]() to execute it. How do you do 
this in as3 ?






--
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: Sample project for CRUD type application

2006-07-31 Thread geiger947
I have looked at it and it was helpfull, but I can not use FDS for 
several reasons I won't go into. One trouble I am having now is to 
set up 2 way databinding. I assume fds adds something in to 
accomplish this cause the code in the example translates for one way 
binding, but not two way.  

Any help on how to set up two way binding so it will work like this 
example.

--- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote:

 If you get FDS the CRM sample is an example of a CRUD app.  The
 Restaurant Finder is also a pretty straightforward app for doing 
some
 basic retrieval, display, and addition.
 
  
 
 Matt
 
  
 
 
 
 From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On
 Behalf Of geiger947
 Sent: Thursday, June 29, 2006 12:20 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Sample project for CRUD type application
 
  
 
 I am just getting into flex and I can not find a good sample 
 application for a CRUD style app. There are lots that get and show 
 data, but none that have a grid and an update form and use 
databinding 
 to tie it all together.
 
 If anyone has a sample they can share, I would appreciate it.








--
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] Sample project for CRUD type application

2006-06-29 Thread geiger947
I am just getting into flex and I can not find a good sample 
application for a CRUD style app. There are lots that get and show 
data, but none that have a grid and an update form and use databinding 
to tie it all together.

If anyone has a sample they can share, I would appreciate it.






 Yahoo! Groups Sponsor ~-- 
Great things are happening at Yahoo! Groups.  See the new email design.
http://us.click.yahoo.com/TISQkA/hOaOAA/yQLSAA/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/