[flexcoders] Repeater question

2007-11-21 Thread kpjj31
When using the repeater, is it possible to set the index or currentItem.

[flexcoders] HTML IN FLEX

2008-03-12 Thread kpjj31
Can someone please tell me if th mx:HTML tag only works when building air apps and not in flex. Thank you.

[flexcoders] call a function from a pop up title window.

2008-03-27 Thread kpjj31
Can I please get some ideas on how to best call a function from a title window. So if data is changing in the popup window I can call a function from the container that opened the window. I have a tried to dispatch an event and parent.everything. I'm sure this is simple and I am missing

[flexcoders] Lose my state instance when opening and closesing a popup modal window

2008-05-01 Thread kpjj31
Is a specific reason why I would lose my ability to use state management after I open and close a modal title window?

[flexcoders] Enabling or disabling individual rows

2008-06-09 Thread kpjj31
I have a list of task items that need to be completed in order. Does anyone know if there is a way to enable and disable rows of a datagrid or a repeater based on weather or not an item in the array collection has a particular value. I really would like to avoid alerting the user when they

[flexcoders] Photo transition

2008-06-14 Thread kpjj31
Is there a way to have a transition or a tween on an image once its source is changed?

[flexcoders] Download capabilities

2008-08-18 Thread kpjj31
Is it possible to give the user an option to downlaod or save a file within a Flex appliation?

[flexcoders] Print?

2008-08-26 Thread kpjj31
Is it possible to print an external html page from with in Flex?

[flexcoders] Module Error

2008-09-24 Thread kpjj31
Has anyone come across this when using modules. VerifyError: Error #1014: Class mx.core::LayoutContainer could not be found

[flexcoders] linkBar labelFunction

2009-03-26 Thread kpjj31
I have a linkBar that uses an arrayCollection as a dataProvider. How would I use the lableFunction if there is no viewStack containers.

[flexcoders] getItemIndex ......returning -1

2009-04-26 Thread kpjj31
What am I doing wrong. Thanks. private function getcoursesResult(event:ResultEvent):void{ courses = new ArrayCollection (event.result.COURSELIST as Array); var newindex:int = courses.getItemIndex('specific course name'); courses_datagrid.selectedIndex=newindex;

[flexcoders] Custom component itemRenderer

2009-05-11 Thread kpjj31
Is it possible to pass data into an itemRenderer that is not apart of the dataProvider. The component I am using as an does not seem to except bindable data when it's used as an item Renderer. coursedays and unittypes are both arrayCollections from remoteObjects. The itemRender is using data.

[flexcoders] ArrayCollection filterFunction returning item in array;

2009-08-07 Thread kpjj31
Is it possible to use the ArrayCollection filterFunction that returns items from an Array? This returns null... private function filterStatus(item:Object):Boolean { var statusgroup:Array = [0, 1, 88, 44]; return item.STATUSID in (statusgroup); }

[flexcoders] call remoteObject muliple times

2009-08-20 Thread kpjj31
Is it possible to call remoteObject multiple times. This number would be based on the number of records in an arrayCollection. This calls it only for the first record. for (var i:int = 0; 1 departmentlist.length; i++) {

[flexcoders] grouping collection for combobox

2009-08-21 Thread kpjj31
I am trying to apply a grouping collection to my combobox. The array collection is a result of a remote object. When I use the grouping colelction as a dataProvide, I get not results. mx:GroupingCollection id=jobsgroup source={departmentlist} mx:Grouping mx:GroupingField

[flexcoders] Create an array from values with in an array collection

2009-09-16 Thread kpjj31
The info below is a result from remote object that is put into an arraycollection. How can I use actionscript to create an array fom all the PROFILEIDs within the ATTENDEEINFO Object. This array needs to be passed into another remote object. ATTENDEELIST 0 - ATTENDEEID DATE

[flexcoders] sorting a datagrid column with an itemrenderer

2009-09-18 Thread kpjj31
How would I go about sorting a datagrid taht has one column. This column has an item renderer. mx:DataGridColumn headerText=Enrolled By dataField=FNAME id=enrolled_header mx:itemRenderer mx:Component

[flexcoders] Actionscript error : RangeError: Index '2' specified is out of bounds.

2009-09-28 Thread kpjj31
Would anybody be able to tell me why I am getting this actionscript error when looping through an arraycollection. attendeelist = new ArrayCollection(event.result.ATTENDEELIST as Array); length is 3 setting selectedindex based on profileid match var index:int =-1; for (var i:int = 0; 1