Flex :: Set Dataprovider Of Buttonbar Component?

Apr 19, 2011

I am trying to add a navigation component with a button bar in it that controls the view stack of the main application. Here is what I have so far for the main application's code:

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"

[code]......

View 2 Replies


Similar Posts:


Flex :: Flex - ButtonBar Custom Component

Mar 17, 2011

I am using a custom component at the top of my application that includes an image and a buttonBar. I have the namespace declared in main.mxml as comps and the package is components. When I assign the dataProvider to the buttonBar and run the application, all I get is a blank page. If I remove the dataProvider everything loads fine. the dataProvider is supposed to be the ViewStack component I have in the main.mxml. The buttonBar and image custom component is TopNav.mxml

The problem is that my TopNav component does not know the dataProvider I am asking it to change; MyViewStack. Do I need to create a public viewstack variable and pass it to the component?

View 1 Replies

Flex :: Set Tooltip For Buttonbar Button?

May 24, 2010

I have a buttonbar that has 3 buttons. I'm trying to set a tooltip for each of the buttons, but not sure where. The ButtonBar itself has a skin, which in turn includes a skin for each of the buttons.

<s:ButtonBar id="bb" selectedIndex="0" skinClass="skins.bbSkin">
<s:dataProvider>
<s:ArrayList>

[code].....

View 1 Replies

Flex :: Focus - Getting FocusedIndex In A Buttonbar?

Nov 7, 2011

I've been looking around on how to get the focusedIndex property of a ButtonBar when there's a mouseOver/Out event, but haven't found nothing useful.EDIT 1Assuming we have this button bar:I'd like to know, when rolling over, the target button.Putting a break point in a function that listens to the mouseover event, this is what I see in the debug view:

View 1 Replies

Flex :: Toggle - Disable Toggling With Flex Buttonbar?

Oct 12, 2010

How to disable the toggle nature of buttons in spark:Buttonbar so that it would behave similar to mx:ButtonBar?

View 2 Replies

Flex :: Disable Individual Buttons In A Buttonbar?

Jun 17, 2009

How can I disable a single button in a buttonbar in Flex?

View 2 Replies

Flex :: Vertical ButtonBar Buttons Width?

Apr 15, 2010

I am creating a vertical button bar with 3 buttons.How do I force the same width for all three buttons so it doesn't look like crap?

<s:ButtonBar x="10" y="10" dataProvider="{viewstack1}" >
<s:layout>
<s:VerticalLayout gap="-1"/>

[code]....

View 2 Replies

Flex :: Set Spark Button Width In ButtonBar?

Sep 11, 2010

How do I set the individual button sizes in a Spark ButtonBar? It used to be something like[code]...

View 2 Replies

Actionscript :: Flex 4.5 - ButtonBar With Dynamic Image In-between?

Dec 16, 2011

Is it possible to modify a Spark button-bar (or to use the design/skin(?)) to have a dynamic flash-generated image in between?

(button | dynamic image | button)

The dynamic image is a double-ended progress bar generated by beginFills and such.

View 1 Replies

Flex :: Set Height Of Button In Spark ButtonBar?

Feb 8, 2012

i have the following code:

<s:ButtonBar id="tabs" y="15" left="0" height="31"
change="VideosMenuBar_changeHandler(event)" requireSelection="true">
<s:layout>[code].........

how can i change the height of the buttons in this buttonbar?? is it possible without extra skin class?

View 1 Replies

Flex :: Spark Buttonbar Change Label On Rollover

Sep 12, 2010

I've got a spark buttonbar w/ a dataprovider as follows:[code]By default, the button's labels will be "Dave" and "Brenda", respectively. How can I dynamically change the label to the "addr" field when a user rolls over the button?

View 1 Replies

Flex :: Reduce The Minimum Width Of A Button On A ButtonBar In 4?

Jan 18, 2011

I have created a spark ButtonBar which is dynamically populated with XML and skinned to look like a standard TabBar. When I used the TabBar in Flex 3, the width of each Tab would shrink or grow to the size of the Label, plus a little padding either side. When using the spark ButtonBar in Flex 4, I find that no matter how short the label (even an empty string), the Buttons will be at least 70 pixels wide, and will expand for longer labels. I have tried setting the minWidth to 20 in various places, including on my ButtonBarButton skin, but this has no effect.

View 1 Replies

Flex :: Itemrenderer - ButtonBar Inside A ListItemRenderer Freeze The Application?

Jun 8, 2011

I have drop on a strange occurance - inserting a ButtonBar inside ListItemRenderer freeze the application. The bug is highly reproductive.ere is a bit of the code :

<s:VGroup id="buttonHolder" visible="false" gap="0" width="100%">
<s:ButtonBar id="buttonMenu" width="100%" height="18" minWidth="100" change="buttonMenuChangeHandler(event)">

[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

Flex :: Adobe - How Do I Ensure A Flex DataProvider Processes The Data Synchronously?

Nov 12, 2011

I am using an component, and currently have a dataProvider working that is anArrayCollection (have a separate question about how to make this an XML file... but I digress).Variable declaration looks like this:

[Bindable]
private var _dpImageList : ArrayCollection = new ArrayCollection([
{"location" : "path/to/image1.jpg"},

[code]....

View 4 Replies

Flex :: Keep The Order Of FLEX Datagrid Columns As Its Dataprovider?

Sep 8, 2009

The flex DataGrid colums are arranged alphabetically by default. I need to order the DataGrid colums as per the order in its dataProvider. The dataprovider is the result of the HTTPService . And the number of columns is not known to us . The number of columns depends on the HTTPService result.

View 1 Replies

Flex :: 4 - Null-component - Checking If The Cancel Button Component In The Child Component?

Jun 23, 2011

I have a component "child" which has a cancel button. Now this component is placed in a state called "newChildComp" I also have another component called "parent". In the parent component, i have a button that dispatches an event. Here is the event code:

[Code].....

so, basically,i am checking to see if the cancel button component in the Child component, while i am still in the parent Compoent, was clicked, if it was clicked, call the cancelButtonHandler. The problem is by the time the addNewChild handles the event, that cancel button was still null. My question is how do i solve this without using the itemCreationPolicy on the cancel button?

View 1 Replies

Flex :: How To Set DataProvider In AS

Nov 25, 2010

I have a datagrid with dataProvider property set in MXML as:
dataProvider="{pagedResult.lastResult}"
How do I set the dataprovider in actionscript? I have:
protected function getResult (event:FlexEvent):void {
pagedResult.token = mydata.paged();
adg1.dataProvider = pagedResult.lastResult;
}

View 2 Replies

Flex :: Dataprovider Tag Is Working

Feb 7, 2011

i m new in flex and was trying example but getting nothing

[Code]...

i think i m doing something wrong in dataprovider tag reason is when i use dataProvider = "{d}"

View 2 Replies

Flex :: Set DataProvider To A ComboBox?

Feb 14, 2011

When setting an arrayCollection as a dataProvider to a comboBox programmatically,if the arrayCollection has just one element,i need to do a small validation[code]..

View 1 Replies

Xml :: Set XML As DataProvider For Charts In Flex?

Mar 13, 2011

I want to display XML exported from Oracle Database as a chart......

The xml has the following structure :

<ROWSET>
<ROW>
<ORDER_ITEMS_ID>1</ORDER_ITEMS_ID>

[Code]....

I've seen many chart examples using ArrayCollection as DataProvider . using the same way , i tried to set xml . But no results.

how to set an XML as dataprovider ? ( or XMLList or XMLlistcollection )( i'm developing a small app in AIR )

View 1 Replies

Flex - Add Row To Flex DataGrid Without Changing DataProvider

Sep 30, 2010

I am creating the standard "Click to add row" control but I really don't want to dirty the dataProvider with a "placeholder" since it is bound to the model and could end up in the database. Is there a way to add a row that isn't represented in the dataProvider? I started down the road of adding an item directly to listItems but then that needed an item in rowInfo and then that need a reference in rowMap.

View 3 Replies

Flex :: ComboBox - Refresh Dataprovider

Apr 5, 2012

I am using a combobox to list the contents of a folder. With a button click I use that combobox.selectedItem to delete that folder. After I delete the data is still in the combobox. How do I go about refreshing that combobox?

View 1 Replies

Flex :: Setting The Dataprovider Of A Tree?

Sep 18, 2009

public function fileBrowse():void {
var success:Boolean = fileRef.browse();
}

[code].....

View 2 Replies

Flex :: Setting The Xml Dataprovider For Combo Box?

Nov 2, 2009

I am trying to get the drop down list of combobox by using a php file. That php file returns an xml string which has been used as data provider for combobox.I followed this thread too but in vain.DetailsI have set the creationComplete attribute of mx:Application to init(). In the init() function i have sent the following HTTPService

<mx:HTTPService id="interfaces" url="interfaces.php" resultFormat="e4x" method="POST">
</mx:HTTPService>
Combo Box:

[code].....

View 1 Replies

Xml :: Flex, <mx:Combobox>: Get Node To Specify's Dataprovider?

Feb 11, 2010

I'm trying to set a combobox's dataprovider.I have 2 comboboxes: cb_div and cb_stores.For cb_div, I get to set the data provider correctly with an XML file.Cb_stores' dataprovider is to be set depending on the selected item of cb_div.First, here are my XML files.Data provider for cb_div:

<?xml version="1.0" encoding="UTF-8"?>
<divisions>
<division id="Japan">Japan</division>

[code].....

View 1 Replies

Xml :: Flex - Horizontallist Control With XML Dataprovider

Mar 4, 2010

I'm using a HorizontalList control with an XML file as a data provider. This is how the XML looks:

[Code]...

I tried using an array of objects as a dataprovider. The item renderer works and the horizontallist behaves as I expect it to. However, when I use an xml file, it's empty.... I don't know why it's not working.

View 1 Replies

Adobe Flex Combobox DataProvider?

Jun 9, 2010

I have a project that was compiled with the Flex 3.2 SDK. One of my components is a combobox, which is bound to a property (called products) in the Cairngorm model. If I insert a new value into model.products, then the combobox immediately shows the new value. Works perfectly.

I then moved to the 3.5 SDK, and running the identical operation causes a problem. Even though the model has been updated (I have verified that this is definately the case), the combobox does not show the new value correctly - it seems to be aware that there is a new item because there is a new row in the combo, but the new row is blank and unselectable. The existing items in the combo are there and selectable (as they should be). If I re-initialising the form (i.e. close and re-open the TitleWindow on which the combo is located), then all the correct values (including the new one) are shown in the combo.

I have swapped back and forth a few times between 3.2 and 3.5 to verify that this is indeed the root cause.

View 2 Replies

Flex :: Append An Item To My DataProvider?

Sep 5, 2010

What I would like to do is simply add to a dataProvider, but when I do, I get an error. Here's the code I'm trying to run...

dg.dataProvider.addItem(obj.ResultSet.Result[i]);

It's inside a for loop, using i as the integer. It works great doing...dg.dataProvider = obj.ResultSet.Result But that won't work for me, because I need to add to the dataprovider more than once. I'm getting results in batches of 10, and I need to add each batch to the dataProvider when it's received. I also tried to to do...

var dgDP:dataProvider = new dataProvider(); But for some reason Flex doesn't recognize it...

View 2 Replies

AS3 :: Flex - How To Know If Dataprovider Or Its Content(s) Is Changed

Jan 10, 2011

I'm implementing some kind of combobox control (by extending spark.components.supportClasses.DropDownListBase)

Now, inside this control; I need to know:

If the dataprovider is changed/assigned. (which I can do... the first approach below works); if any item in the dataprovider collection has changed.

I tried 2 methods that did not do the trick...

1ST APPROACH:

2ND APPROACH:

UPDATE: Edited above.. The first approach lets me know if the dataprovider is changed but not if any item is updated in the dataprovider collection. The second approach does not work at all..

View 1 Replies







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