[flexcoders] Binding an ICollectionView to a ComboBox completely in ActionScript

2008-08-29 Thread wubac1
I have a paged collection that implements the ICollectionView interface and can be bound the the dataProvider property of a component in MXML. However, doing this with a ComboBox can result in an empty dropdown if the dropdown is opened before the PagedCollection can retrieve an initial page.

[flexcoders] Binding an ICollectionView to a ComboBox completely in ActionScript

2008-08-29 Thread wubac1
I have a paged collection that implements the ICollectionView interface and can be bound the the dataProvider property of a component in MXML. However, doing this with a ComboBox can result in an empty dropdown if the dropdown is opened before the PagedCollection can retrieve an initial page. Once

[flexcoders] Binding an ICollectionView completely in ActionScript to a ComboBox

2008-08-29 Thread wubac1
I have a paged collection that implements the ICollectionView interface and can be bound the the dataProvider property of a component in MXML. However, doing this with a ComboBox can result in an empty dropdown if the dropdown is opened before the PagedCollection can retrieve an initial page. Once

[flexcoders] Maintaining sessions while interacting with Flex using alt back-end services

2009-03-11 Thread wubac1
I'm hoping someone can shed some light on a design issue I'm facing. If I have a sign in form external to Flex, but it controls access to the Flex application, what are the best practices for maintaining the session when the user is interacting with the Flex application? I can provide the

[flexcoders] Re: Maintaining sessions while interacting with Flex using alt back-end services

2009-03-12 Thread wubac1
, wubac1 wub...@... wrote: I'm hoping someone can shed some light on a design issue I'm facing. If I have a sign in form external to Flex, but it controls access to the Flex application, what are the best practices for maintaining the session when the user is interacting with the Flex

[flexcoders] Re: Maintaining sessions while interacting with Flex using alt back-end services

2009-03-12 Thread wubac1
expires every lets say 30 minutes, make the client hit a simple page that does nothing every lets say 25 minutes- make sure that this is not cached by appending a timestamp in the url On Wed, Mar 11, 2009 at 11:23 PM, wubac1 wub...@... wrote: I'm hoping someone can shed some light

[flexcoders] Re: Question from a C developper

2009-03-12 Thread wubac1
long (c++) -- uint (ActionScript) There is no struct option in ActionScript, you can only create a class. Only objects are pass by reference in ActionScript. Converting an int to Number: var i : int = 47; var num : Number = i as Number; --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Question from a C developper

2009-03-12 Thread wubac1
Object equality can be done with the ObjectUtil.compare method or by utilization of the UID interface, depending on your needs. I prefer uint over Number for representing a long. --- In flexcoders@yahoogroups.com, Alain Thibodeau thibodeau.al...@... wrote: - Is it possible to define a

[flexcoders] Re: Question from a C developper

2009-03-12 Thread wubac1
That's correct. My use of uint is not a perfect replacement for long and is based on assumptions made for a specific project. I should have been more clear about that. ActionScript does not support long for portability purposes. --- In flexcoders@yahoogroups.com, Maciek Sakrejda

Re: Fw: [flexcoders] Sorting on Datagrid

2009-03-13 Thread wubac1
Please see ICollectionView and ListCollectionView source code. You need to account for paging in your collection. Since your collection inherits from ArrayCollection, the sorting is currently done as dicated by ListCollectionView. Since ListCollectionView does not account for paging, your

[flexcoders] Embedding for DataGrid

2009-03-14 Thread wubac1
Many websites embed Flash/Flex applications for charts, but I don't see embedding for DataGrid. Given that DataGrid has many usability advantages over HTML-based pagination (my assumption), why is it not used for tables in javascript-based websites? If I am overlooking any major examples,

[flexcoders] Re: Embedding for DataGrid

2009-03-14 Thread wubac1
:42 PM, wubac1 wub...@... wrote: Many websites embed Flash/Flex applications for charts, but I don't see embedding for DataGrid.  Given that DataGrid has many usability advantages over HTML-based pagination (my assumption), why is it not used for tables in javascript-based websites?  If I

[flexcoders] Re: Cool Flex Component Site (opensource)

2009-03-16 Thread wubac1
Wow, that has to be some of the worst UI I've ever seen. --- In flexcoders@yahoogroups.com, aoi_zip aoi_...@... wrote: cool all opensource (lgpl) http://www.openzet.org/samples/

[flexcoders] Re: Cool Flex Component Site (opensource)

2009-03-16 Thread wubac1
Actually, I don't make it past the components using DataGrid as a dropdown, so it might not all be bad. Though, that was enough for me, I didn't need to see any more. --- In flexcoders@yahoogroups.com, wubac1 wub...@... wrote: Wow, that has to be some of the worst UI I've ever seen

[flexcoders] Flex app fails when moved to server hosting web services

2009-03-20 Thread wubac1
I have a Flex application that runs fine from my desktop. When I move the files to a virtual machine that already hosts the web services for the app, it no longer works as expected. Now, when the app creates a WebService and calls an operation, I see that the WSDL if located and downloaded,

[flexcoders] Re: Flex app fails when moved to server hosting web services

2009-03-20 Thread wubac1
Message- From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of wubac1 Sent: Friday, March 20, 2009 2:29 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex app fails when moved to server hosting web services I have a Flex application that runs fine

[flexcoders] Re: Flex app fails when moved to server hosting web services

2009-03-20 Thread wubac1
location is mentioned here? -Original Message- From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of wubac1 Sent: Friday, March 20, 2009 2:29 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex app fails when moved to server hosting web

[flexcoders] Re: Flex app fails when moved to server hosting web services

2009-03-20 Thread wubac1
import or include? Can you look around in the types section? Pete -Original Message- From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of wubac1 Sent: Friday, March 20, 2009 1:23 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Flex app

[flexcoders] Re: Flex app fails when moved to server hosting web services

2009-03-20 Thread wubac1
After removing said import, everything works fine. Assuming the import is extraneous, my issue is with the WSDL generated by gSOAP and not specific to Flex. --- In flexcoders@yahoogroups.com, wubac1 wub...@... wrote: There is an import: import namespace=http://schemas.xmlsoap.org/soap

[flexcoders] Re: Flex app fails when moved to server hosting web services

2009-03-20 Thread wubac1
. Pete -Original Message- From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of wubac1 Sent: Friday, March 20, 2009 1:57 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Flex app fails when moved to server hosting web services

[flexcoders] Re: Flex app fails when moved to server hosting web services

2009-03-20 Thread wubac1
, wubac1 wub...@... wrote: Thanks, Pete. If I remove the import will that import other client types (C++, Java, etc) negatively? --- In flexcoders@yahoogroups.com, Peter Farland pfarland@ wrote: There you go - the schema definition for SOAP 1.1 is implied for our processing of WSDL, so

[flexcoders] Re: interface question: function get vs. public var

2009-03-26 Thread wubac1
A concrete object does not an interface make. --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: Nope, gotta define a getter. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

[flexcoders] Custom List ItemRenderer / Recycling troubles

2009-04-17 Thread wubac1
I'm attempting to create a very simple item renderer for mx:List. I've found that when the dataProvider is static, there are no problems with the custom item renderer. However, when the dataProvider is dynamic, the height of the item renderer is not correct. I've set variableRowHeight=true

[flexcoders] Custom List ItemRenderer / Recycling troubles (height incorrect)

2009-04-18 Thread wubac1
I'm attempting to create a very simple item renderer for mx:List. I've found that when the dataProvider is static, there are no problems with the custom item renderer. However, when the dataProvider is dynamic, the height of the item renderer is not correct (and scroll bars appear for each

[flexcoders] Re: Custom List ItemRenderer / Recycling troubles (height incorrect)

2009-04-18 Thread wubac1
[mailto:flexcod...@yahoogroups.com] On Behalf Of wubac1 Sent: Saturday, April 18, 2009 2:02 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Custom List ItemRenderer / Recycling troubles (height incorrect) I'm attempting to create a very simple item renderer for mx:List. I've found

[flexcoders] Re: Custom List ItemRenderer / Recycling troubles (height incorrect)

2009-04-18 Thread wubac1
, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of wubac1 Sent: Saturday, April 18, 2009 2:02 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Custom List ItemRenderer / Recycling troubles (height incorrect

[flexcoders] Re: Custom List ItemRenderer / Recycling troubles (height incorrect)

2009-04-18 Thread wubac1
and positive comments. -TH --- In flexcod...@yahoogro mailto:flexcoders%40yahoogroups.com ups.com, wubac1 wubac1@ wrote: Tim, I have been using the variableRowHeight (see my original example). Also, one should not need to replicate the measure of mx:Text. Your example disregards internal