Flex :: Hide A List Component When It Contains No Items?

Apr 28, 2010

I have a List of items which is based on the contents of the "category" that a user selects

When the user changes selection, I change the dataProvider of the list be be the contents of the current category.

Sometimes the list contains items, sometimes it does not

Is there a way of hiding the list when it has no items?

I know that I could do this when setting the dataProvider, but it seems like there should be an event or something else that I could be using.

View 2 Replies


Similar Posts:


Flex :: Hide The Horizontal Overflow In S:List Component?

Mar 15, 2011

wondering if there's any way to make it so that a list I have will not scroll to show the horizontal end of the items. Very few items go long enough to require it and the horizontal scrollbar is distracting.

I don't see any property to control that, though, so not sure how to achieve this.

View 1 Replies

Actionscript 3 :: Flex Tile List Component Takes Time To Render All The Items

Mar 7, 2011

To create a similar page [URL] in Flex what are all the basic component involved , just high level is enough here is the template I guess looks like

<VBox>
<comp:Header/>
<HBox>

[Code]....

By Loading all the products into the tile List which takes lot of time to render the whole page , how to resolve this?

View 1 Replies

Flash :: List Component - Change Pointer Icon To Hand For List Items?

Nov 9, 2010

I am working on an older Flash project created in CS3 ActionScript 2.0 How can I make the pointer cursor change to the hand when hover over a list item?_root.slidePanel.myList'myList' is the list. I have traced out the contents of the List MC and it has a child MC called 'content_mc'. I assumed this was the object containing all of my list items but the only members of this MC I can see (when tracing them out) are 'setRGB' and 'searchKey'.

View 1 Replies

Actionscript 3 :: Get A Navigation Through The List Items In A List Component Of Flash?

Mar 23, 2012

Why I have to press 2 times the arrow key down to get a navigation through the list items in a list component of Flash?

Theres any workaround for this? I have a listener for keyboard event that checks if keyCode is equal to 40 if it is then I use 'stage.focus = list', but I have to press 2 times key arrow down to start navigating through list items.

View 1 Replies

ActionScript 2.0 :: Hide / Show List Component

Aug 2, 2008

I am currently trying to learn how to use MySQL, PHP/XML, and Flash together. What I have so far is a list box that loads the MySQL table "subject" through the following code: PHP File:

[Code]...

This code works exactly how I want it to but what I now want to do is have each list item in the list (when clicked) show another list component that will display the corresponding product items from the MySQL "items" table. I was thinking of creating a new flash file for each set of items and then have the subject list display the SWF files but I want to be able to add new subjects without having to go back into flash and do more coding.

View 2 Replies

Flex :: Make List Items As Tool Tips For Combo Box Items?

Dec 1, 2009

How to make list items as tool tips for combo box items?

View 2 Replies

Flex :: Force The List To Load All The Items, Not Only The Visible Items?

Aug 15, 2010

I'm creating a facebook application in flex. I'm actually working on the friends component that shows your friends who are using the application. now, each friend has a profile image.

I created the component using a s:List element.

In the Skin Class of the element i configured the requestedColumnCount to 3, which means it shows 3 friends. i added buttons to scroll left and right in the list.

Whenever I scroll to see a different friend, for a half of a second i see no image because the List component is loading the image in order to view it.

is there a way to make the list preload all the elements so i won't have this kind of problem ?

View 1 Replies

ActionScript 3.0 :: Removing Items From List Component?

Oct 27, 2008

Below is a function set that's used to get info from an XML source(s) and populate a List Component (videoList). Works great. The second function loads data from a separate XML source and populates the SAME List Component. When the second function is called it loads the data in addition to the existing data into the List Component. I want it to REPLACE the data. How would I accomplish this?

public function getXMLdata(event:Event):void {
var campXML:XML = new XML(xmlLoader.data);
var vid:XML;
for each(vid in campXML.vid) {

[Code].....

View 3 Replies

ActionScript 3.0 :: Align List Component Items?

Jul 24, 2011

I created an isntant of a list component on stage called "myList" and added 8 items to it.I need to align the labels in this list to the right or center.It's on the main time line and not in a seperate as file (if it matters...).I tried using setStyle but it failed (not the solution or I used it wrong).

View 3 Replies

ActionScript 3.0 :: Getting Selected Items From List Component?

Oct 26, 2010

I'm having troubles getting selectedItems from a List Component in Flash CS4. Each time I select multiple selections the object that selectedItems returns seems to be populated with the last selected item in each of its instances. What is strange from the example I provide below is that once you've made your selection and click the label you can update another list with the correct selected values. But the output values are still traced incorrectly.

Code:
import fl.data.DataProvider;
import fl.controls.List;
import fl.controls.Button;
var dp:DataProvider = new DataProvider();
dp.addItem({label:"Item 1"});
[Code] .....

View 0 Replies

ActionScript 2.0 :: Gray-out Some Items In List Component?

Jun 20, 2007

I need to be able to disable/grayout SOME items in a list component.

View 1 Replies

Actionscript 3 :: Select All Items In An Mx:List Component Programatically?

Dec 20, 2009

To select all the items in myList I wrote:

myList.selectedItems = ['red','cyan','magenta'] ;

But what if I don't know about the items in the mx:list in advance? How can I select all the items in a list without specifying their names?

View 3 Replies

ActionScript 3.0 :: Targeting/Styling Items In List Component?

Aug 22, 2008

This question specifically deals with AS3 and list components and styling a selected item, if that's even possible. I've got an XML/Flash Video player that lists the videos with a thumbnail and description in a list component. I got the source files from an Adobe tutorial:[URL]...I'm able to style everything the way I want it. The problem comes when I try to attribute a specific text style to a selected item. I understand how the information is being taken from the XML and looped into the list component. What I don't get is how you reference a particular item in the list and whether or not you can attribute a different style to that item when the event listener fires.

[Code]...

View 3 Replies

Actionscript 3 :: Select Multiple Items As Default In List Component?

Feb 3, 2012

I set my list to allow multiple selection. But when I load data in my list, I want to set a few items as selected. Normally you can set only one item selected by using list.selectedIndex. It only accepts int. How can I set multiple items as selected?

View 2 Replies

Flex :: 4.1: <mx:List> Had RowCount Properly For The Limit The Displayed Items. <s:List> Doesn't

Aug 11, 2010

I'm using flex 4.1 to write an application. i read in the documents that has the rowCount property to set how many items to display. the does not have that property. how can I limit the list to display 3 items ?

View 3 Replies

Flex :: 3: Scrolling Of List Items With In A List Via Scroll Wheel

Dec 31, 2009

Here is a snip from within my code:

[Code]...

The 'recommendations' dataProvider is an ArrayCollection of String, which are generally sentences about as long as this one. By setting the variableRowHeight and wordWrap properties as shown, if a sentence is too long to fit on a single line, everything works fine- the row expands and the messages show on two lines, or occasionally three.

The space allocated for this panel within the entire canvas means if the total text size of 'recommendations' exceeds six lines, I need for the entire list scroll. This is also working just fine. The trouble is when using the mouse wheel to do the scrolling- Flex scrolls both the entire list and the single item where the mouse is hovering. Often this results in only the second half of a sentence being visible. Non-programmer friends I have asked to look at this noticed this, and tell me it as a problem. If a user does not notice the dual scrolling, and sees only a fragment of a sentence, it will be perceived as an error in the application.

[Code]....

View 1 Replies

ActionScript 3.0 :: Update A List Component Pushing New Items Inside His DataProvider Object?

Dec 4, 2009

I'm trying to update a List component pushing new items inside his DataProvider object.

I've tried with a:
MY_LIST.invalidateList();
MY_LIST.validateNow();

but the list doesn't change, anyone has some suggestions?

View 2 Replies

Hide Items From Legend In Flex Chart?

Apr 6, 2010

I have a LineChart continaing 6 lineseries. I should be able to pass parametrers to server using HTTPservice. But then the returned XML may contain information for a single line series or for all the lineseries. The problem, if we have a value for a single lineseries , the legend should contain also only one item and similarly for multiple items. [code]...

View 1 Replies

Flex :: Hide Chart Items Based On Some Value?

Sep 20, 2011

I have plot chart with an 'itemRenderer' to render the text. I have the renderer working corrrectly. Now, what I want to show/hide some of the chart tiems if it's below/above some value. I am using the 'Label' component as 'itemRenderer' and overriding the 'data' function (find my renderer component below..).

If the size of the dataprovider of the chart is greater than '100', I want to hide all the 'events' with 'low' severity. For that I need to get a reference to the dataprovider, but not sure how... ?

public class EventChartItemRenderer extends Label
{
private var chartItem:ChartItem;
private var evtLblTxt:String;

[Code]....

View 1 Replies

Flex :: Using Drag & Dop Into List Get List Items?

Nov 23, 2009

while i using drag & drop from listbox1 to listbox2 ,how can i get all the items of listbox2 in flex

View 1 Replies

Flex :: Make A Custom Component Or Extend The List Component For A 2D Top Down View MAP ?

Nov 11, 2010

I'm building a top view 2D map, that it's objects are stored on the server.The kind of objects are 10 and might be a photo, label, button, lists, mix of them or labels with tooltips.The component must request the "areas" that are missing on screen.An area is 1000x1000 px and is cached in flex.To move in the map, will be like in google maps (drag-and-drop).I should be able to have another list and move objects from one to another using drag-an-drop on objects. Ex.: I grab an objects from a list and I move it on this map, I release the mouse button and the item is placed there.Now the problem is: I build a custom component for this trying to emulate the item renderer for performance and recyclage, implement drag-and-drop on objects and request the areas that are missing?

or

I extend the List component from spark and I add some features as multiple kind of itemrenderers and use recycle on them. Of course it must be able to request the missing areas on the screen and cache it's data.Maybe create a custom layout is needed too.What I need is something that must be really fluid, so the lighter this component is, the better.

UPDATE: *There will be not any object over another.

*I will not use hitTest on bitmaps because all bitmaps are wrapped in another component,as they,for now are itemrenderers.

Anyway I already begin to do this using a class that extends the SkinnableDataContainer and a custom layout. As the layout is not like a grid, is sparse, random items at diferent points(x, y).How to get the localX and localY, relative to item renderer and not to the Spark List, from a DragEvent in Flex 4?

View 1 Replies

Flex - Use A Different ItemRenderer For Different List Items?

Aug 3, 2010

I have a Flex list and a custom ItemRenderer. I'd like to be able to have some items in the list use a different ItemRenderer (say, depending on the class of the item). Is this possible?

E.g.: <s:List dataProvider="{_systems}" itemRenderer="myItemRenderer"/>

Most items in _systems use myItemRenderer. But if element 3 of _systems is "specialSystem" the renderer would be "specialItemRenderer".

View 2 Replies

Flex :: Swf - Hide Component From SWFLoader

Jun 15, 2010

How can I hide a component and what AS3 code to use to hide a Flex Component from an external swf file?

View 1 Replies

Flex :: Vertical Gap Between List Items Not Working?

Mar 18, 2010

I have a list item with buttons in it like so:

<mx:List contentBackgroundAlpha="0" baseColor="0x333333" leading="10" id="weekButtonList" width="260" borderVisible="false" dataProvider="{_data.mappoints.week.@number}" itemClick="onWeekClick(event);" >

[Code]....

No matter what I do, these buttons have a vertical gap inbetween them. I have tried everything from setting the "vertical-gap" property to negative and positive numbers as well as changing the padding-bottom and padding-top on them. I want the buttons to be right up against eachother vertically. I have also tried "button-height" and padding on the List component...still nothing. How do I control this?

View 3 Replies

Flex :: Enumerating Spark List Items?

Mar 31, 2010

How to enumerate items of Spark List component after setting dataProvider property?

I mean accessing them as DisplayObject instances.

View 1 Replies

Flex :: Retrieve The Sum Of Items From A Sharepoint List?

Aug 26, 2010

Is there any way to get the sum of items based on some filters from sharepoint list? I was trying to access the GetListItems method. But this returns all the items in the list. That makes the data heavy. My requirement is to get only the sum of items. For example items created in a specific year.I am trying to populate a chart in flex from the sharepoint list. Accessing all the items and then calculating the sum in flex will not work always where the list contains more items.

View 1 Replies

Flex :: Fade In/out Items In List When Filtering?

Jan 27, 2011

In Flex 4 I have a list where every product in it is rendered through an ItemRenderer. Now, when I filter the list I want to fadeout the products that are removed. I can't add the fadeout effect to the hideEffect of the item renderer since renderers are being reused. Anyone a valid (easy) solution on how the fadeout the products correctly.

View 1 Replies

Flex :: Scroll An Mx:List By Tabbing Through Items?

Jul 19, 2011

I'm sure someone must have accomplished this before, but I couldn't find any article on this.

How can we scroll a List control (with uses an itemrenderer) to the next item, when the user tabs from the current item to the next?

I know that we can use scrollToIndex(i), but how do we notify the List that the itemrenderer has moved to the next index? I couldn't find any such event.

View 1 Replies

Flex :: List ItemRenderer Caching Items?

Jul 31, 2011

i am using an itemRenderer in mx:list, it has many text fields and combos, i use this item renderer to edit items in array collection, each item in the arrayCollection is of type Action which comes from BlazeDS remoting as a valueObject.my problem is when i add new item of type Action to the list dataProvider (ArrayCollection) by this code

myList.dataProvider.addItem(new Action());

the new item tooks the same data from its previous item.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved