Problem with < Mx:List >

Hello

I had a problem with the list control in flex. I'm trying to implement a list of a few names where the user can select each name by clicking on the item in the list. My question is if the list with the same name then not able to select the items in the list. (The same reversal isn't the case)

Here is the code:

? XML version = "1.0" encoding = "utf-8"? >

" < = xmlns:fx s:Application ' http://ns.Adobe.com/MXML/2009 "

xmlns:s = "library://ns.adobe.com/flex/spark".

xmlns:MX = "library://ns.adobe.com/flex/mx" minWidth = "955" = "600" minHeight >

< fx:Declarations >

<! - Place non-visual elements (e.g., services, items of value) here - >

< / fx:Declarations >

< fx:Script >

<! [CDATA]

[Bindable]

private var testArray:Array = new Array("s1","s1","s1");

[]] >

< / fx:Script >

< mx:List dataProvider = "{testArray}" >

< / mx:List >

< / s:Application >

If the list of the various inputs, then I can roll over each item and select the wanted item. But if the list with the same name and then everything goes wrong.

Is there anyway to fix this? Help, please

the s1 should be "s1".



          
                    
          
          
                    
          
                    
                    

Tags: Flex

Similar Questions

  • Problem with the list item

    Hi all
    I am facing a problem with the list item in my form. In my form, I have a list item (tmd_stat) with 3 list of values as the item complete, incomplete and null.this lies in the control block.

    I have a block (Detail) which is the database block.status_disp [point List] is one of the .an article on the value of list tmd_stat is filling with different values.

    an alert message (you want to change the status? Yes/No) will appear when we change the list item. If I click YES then the list works and retail block point status_disp is filled with a different list of values. If I click on 'No' the list value will be set to changed value.i.e suppose that I'm changing the Complete incomplete list item, alert message will be displayed. If I click on 'No' the cursor is placed on incomplete but incomplete. How can I place the cursor on the full value.

    Can you please give me the solution.

    Thank you

    Hello

    Save the old value in a variable and then if the user clicks on No. then reassign this value to the list item.

    Kind regards

    Manu.

  • Trying to solve a problem with the list under display properties screensaver!

    When I try to put my screensaver, gout dwon displays a completely blank entry followed by (None) & the list of available screensavers.  Every time I choose (none), it is up to the last installed screen saver.

    An example: the last installed screen saver was ArcSoft Photobook screensaver.
    So, when I select (none) for no screensaver, it is up to the ArcSoft Photobook screensaver.

    This happens each & everytime I have add a new screen saver.
    (None) option always returns to the last screen saver installed.

    There are moments that I need the option screensaver set to (none).

    Any ideas on how to fix this problem would be greatly appreciated.

    Ed

    Not sure as to what I did, however, my problem with the screen saver has been fixed.

    I've been messing around with a number of things that I thought might have caused this problem.  And wala, suddenly the problem existed no more!

  • Problem with ScriptUI lists

    Hi all

    I have a problem with a ScriptUI Photoshop for six days.

    This script defines a table of all the images located in a top folder and its subfolders. Then he opens the first found photo and creates a list of the EXIF of the camera.

    I know how to set the items selected by the user in a table. My problem is not the text that I want to extract, but their index numbers (lines 56 and 62).

    Any idea?

    // Enables double clicking from the Macintosh Finder or Windows Explorer
    #target photoshop
    app.bringToFront();
    
    
    var topFolder = Folder.selectDialog("Select the top folder where your images are : ");
    if (topFolder != null) 
    {
      filesArray = scanFolder(topFolder);
    }
    
    
    // Opens the first photo found
    if (filesArray.length > 0) 
    {
      var docRef = filesArray[0];
      app.open (docRef);
    }
    
    
    // Sets the EXIFs of the camera in an array
    var exifArray = new Array();
    var selectedItems = new Array;
    var exifNumber = app.activeDocument.info.exif.length;
    for (var i = 0; i < exifNumber; i++)
    {
      exifArray[i] =  app.activeDocument.info.exif[i][0];
    }
    app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    
    
    // User interface
    var w = new Window("dialog");
    var information = w.add('statictext',undefined,'Press the key Ctrl and select the EXIFs you need.'); 
    var columns = w.add("group");
    columns.orientation="row";
    var list1 = new Array();
    var list2 = new Array();
    var halfList = Math.round((exifArray.length)/2);
    for (var i=0;i<halfList;i++) // List 1 (left column)
    {
      list1[i] =  exifArray[i];
    }
    
    
    for (var i=halfList;i<exifNumber;i++) // List 2 (right column)
    {
      list2[i-halfList] =  exifArray[i];
    }
    
    
    var listExif1 = columns.add ("listbox", undefined,list1,{multiselect:true});
    var listExif2 = columns.add ("listbox", undefined,list2,{multiselect:true});
    listExif1.onChange = function()
    {
      selectedItems[selectedItems.length] = listExif1.selection;
    }
    
    
    listExif2.onChange = function()
    {
      selectedItems[selectedItems.length] = listExif2.selection;
    }
    var exeButton = w.add ("button", undefined,"Execution");
    exeButton.onClick = main;
    w.show();
    
    
    // Puts the selected items in an array
    function main()
    {
      for (var i=0;i<selectedItems.length;i++)
      {
      alert(selectedItems[i]);
      w.hide();
      }
    }
    
    
    // Recursive function 
    function scanFolder(folder) {
      var filesArray = [],
      fileList = folder.getFiles(),i, file;
    
      for (i = 0; i < fileList.length; i++) {
      file = fileList[i];
      if (file instanceof Folder) {
      filesArray = filesArray.concat(scanFolder(file));
      }
      else if (file instanceof File && file.name.match(/\.(jpg|)$/i)) {
      filesArray.push(file);
      }
      }
      return filesArray;
    }
    

    Hi Michel,.

    listExif1.selection returns an array of ListItems.  You can get the index using the 'index' property, or get the text using the "text" property

    For example if I put the following code in the listExif1.onChange Manager:

    var selections = "";
    for(var i=0; i < listExif1.selection.length; i++){
         selections += "\nIndex:"+listExif1.selection[i].index+", text: "+listExif1.selection[i].text;
    }
    alert(selections);
    

    I get the following text in the alert after two selections:

    Index: 4, text: Description of the Image

    Index: 7, text: Orientation

    In addition, I don't know exactly what you are trying to accomplish, but as a guess, you want a list of currently selected items when the user press the run button. In this case I consider rather than follow the selections in the onChange for each listbox handler, simply get the current selections at the time when the user presses the run button.

    If the main function might look like this:

    function main()
    {
      selectedItems = listExif1.selection.concat(listExif2.selection)
      for (var i=0;i
    

    If you do not need to follow whenever the user changes the selection in the list box, you need to specify how you add to the selectedItems array.

    Hope that helps.

    Thank you

    Eric

  • IE problem with spry lists when next to Flash element

    My Web site http://www.chamblissgiobbi.com/index.html has a problem with IE 7 & 8. On the pages of images where the Flash is used does not display the menu drop down. I read that the problem is that IE puts Flash on the upper level, regardless of what index Z, so that the drop-down list ends up being behind the flash. I tried a few bugs but still no luck.  Here is my code, and since I'm still new to this it might be something obvious I'm doing wrong. Any help would be greatly appreciated it.

    @charset "UTF-8";

    / * Sections - review: pre-release Spry 1.4 * /.

    / * Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

    /*******************************************************************************

    The AVAILABLE INFORMATION: Describes the box model, positioning, the order

    *******************************************************************************/

    / * The outermost container for the menu bar, an area of width auto without margin or padding * /.
    UL. MenuBarHorizontal
    {
    margin: 0;
    padding: 0;
    list-style-type: none;
    do-size: 12px;
    cursor: default;
    do-family: Arial, Helvetica, without serif.
    background-color: #FFFFFF;
    Clear: both;
    float: left;
    make-weight: bolder;
    background-position: left Center.
    make-style: normal;
    do-variant: normal;
    color: #999999;
    text-align: center;
    }
    / * Value of the menu bar active with this class, currently the definition of z-index to accommodate IE rendering bugs: http://therealcrisp.xs4all.nl/Meuk/IE-zindexbug.html */
    UL. MenuBarActive
    {
    z-index: 1000;
    do-family: Arial, Helvetica, without serif.
    Color: #666666;
    make-weight: bolder;
    }
    / * Menu item containers, position of children relative to this container and are a fixed width * /.
    UL. MenuBarHorizontal li
    {
    margin: 0;
    padding: 0;
    list-style-type: none;
    do-size: 100%;
    position: relative;
    text-align: center;
    cursor: pointer;
    Width: 121px;
    height: auto;
    float: left;
    do-family: Arial, Helvetica, without serif.
    background-image: none;
    Clear: none;
    height: 22px;
    make-style: normal;
    make-weight: bolder;
    do-variant: normal;
    color: #999999;
    }
    / * Submenus should appear under their parent (top: 0) with a higher z-index, but they are first the left side of the screen (-1000em) * /.
    UL. MenuBarHorizontal ul
    {
    margin: 0;
    padding: 0;
    list-style-type: none;
    do-size: 100%;
    z index: 1020;
    cursor: default;
    Width: 66px;
    position: absolute;
    left:-1000em;
    background-image: none;
    make-weight: lighter;
    min-height: 22px;
    height: auto;
    Color: #FF0000;
    }
    / * Submenu that shows with the designation of the class MenuBarSubmenuVisible, we put the car left so it happens on the screen below its parent menu item * /.
    UL. MenuBarHorizontal ul. MenuBarSubmenuVisible
    {
    left: auto;
    do-family: Arial, Helvetica, without serif.
    Width: 7px;
    background-image: url (.. / images/web/navOVER_bkgrnd.jpg);
    list-style-image: none;
    make-weight: lighter;
    min-height: 24 PX.
    height: auto;
    Color: #FF0000;
    background-repeat: repeat-x;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: solid;
    border-left-style: none;
    border-bottom-width: 1px;
    border-bottom-color: #CCCCCC;
    }
    / * Container of menu items are same fixed width parent * /.
    UL. MenuBarHorizontal ul li
    {
    Width: 7th;
    make-weight: bolder;
    height: 24 PX.
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 1px;
    border-left-width: 0px;
    border-bottom-style: solid;
    border-bottom-color: #CCCCCC;
    border-right-color: #CCCCCC;
    border-bottom-color: #CCCCCC;
    border-left-color: #CCCCCC;
    Color: #FF0000;
    }
    / * Submenus should appear slightly overlapping to the right (95%) and upward (-5%) * /.
    UL. MenuBarHorizontal ul ul
    {
    position: absolute;
    margin:-5% 0 0 95%;
    do-family: Arial, Helvetica, without serif.
    make-weight: lighter;
    Color: #FF0000;
    }
    / * Submenu that shows with the designation of the class MenuBarSubmenuVisible, we have left to 0, it is on the screen * /.
    UL. MenuBarHorizontal ul. MenuBarSubmenuVisible ul. MenuBarSubmenuVisible
    {
    left: auto;
    top: 0;
    background-image: url (.. / images/web/navOVER_bkgrnd.jpg);
    do-family: Arial, Helvetica, without serif.
    make-weight: lighter;
    height: 26px;
    Width: 7px;
    background-repeat: repeat-x;
    Color: #FF0000;
    }

    /*******************************************************************************

    INFORMATION DESIGN: Describes the set of colors, borders, fonts

    *******************************************************************************/

    / * Submenu containers have borders on all sides * /.
    UL. MenuBarHorizontal ul
    {
    border: 1px solid #CCC;
    do-family: Arial, Helvetica, without serif.
    make-weight: lighter;
    Color: #FF0000;
    }
    / * Menu items are a light grey block with padding and no text decoration * /.
    UL. MenuBarHorizontal a
    {
    display: block;
    cursor: pointer;
    color: #999999;
    text-decoration: none;
    do-family: Arial, Helvetica, without serif.
    do-size: 100%;
    make-weight: bolder;
    background-image: none;
    background-repeat: no-repeat;
    background-color: #FFFFFF;
    Width: 106px;
    padding-top: 0.5em;
    padding-right: 0.75em;
    padding-bottom: 0.5em;
    padding-left: 0.75em;
    }
    / Components menu that have mouse over or focus have a blue background and white text * /.
    UL. MenuBarHorizontal a: hover, ul. MenuBarHorizontal a: focus
    {
    Color: #666666;
    do-family: Arial, Helvetica, without serif.
    make-weight: bolder;
    background-image: url (.. / images/web/navOVER_bkgrnd.jpg);
    background-repeat: repeat-x;
    do-size: 12px;
    border: thin dashed #999999;
    }
    / * Menu items that are opened with the submenus are on MenuBarItemHover with a blue background and white text * /.
    UL. MenuBarHorizontal a.MenuBarItemHover, ul. MenuBarHorizontal a.MenuBarItemSubmenuHover, ul. MenuBarHorizontal a.MenuBarSubmenuVisible
    {
    Color: #666666;
    do-family: Arial, Helvetica, without serif.
    do-size: 12px;
    make-weight: bolder;
    background-image: url (.. / images/web/navOVER_bkgrnd.jpg);
    background-repeat: repeat-x;
    border: 0px none #CCCCCC;
    }

    /*******************************************************************************

    Submenu INDICATION: styles if there is a submenu in a given category

    *******************************************************************************/

    / * Menu items that have a submenu have the MenuBarItemSubmenu class designation and are set to use a positioned background the far left (95%) and vertically centered image (50%) * /.
    SLH MenuBarHorizontal a.MenuBarItemSubmenu
    {
    background-image: none;
    background-repeat: no-repeat;
    background-position: 0 95%;
    border-bottom-color: #CCCCCC;
    border-right-color: #CCCCCC;
    border-bottom-color: #CCCCCC;
    border-left-color: #CCCCCC;
    color: #999999;
    do-family: Arial, Helvetica, without serif.
    make-weight: bolder;
    do-size: 12px;
    }
    / * Menu items that have a submenu have the MenuBarItemSubmenu class designation and are set to use a positioned background the far left (95%) and vertically centered image (50%) * /.
    MenuBarHorizontal ul a.MenuBarItemSubmenu SLH
    {
    background-image: url (.. / SpryAssets/SpryMenuBarRight.gif);
    background-repeat: no-repeat;
    background-position: 50 95%;
    Color: #FF0000;
    }
    / * Menu items that are opened with the submenus have the designation of the MenuBarItemSubmenuHover class and are set to use a background image "hover" positioned on the far left (95%) and centered vertically (50%) * /.
    SLH MenuBarHorizontal a.MenuBarItemSubmenuHover
    {
    background-image: url (.. / images/web/navOVER_bkgrnd.jpg);
    background-repeat: repeat-x;
    background-position: 111% 0%;
    border-bottom-width: 0px;
    border-bottom-style: none;
    border-top-width: 0px;
    border-right-width: 0px;
    border-left-width: 0px;
    border-top-style: none;
    border-right-style: none;
    border-left-style: none;
    color: #999999;
    }
    / * Menu items that are opened with the submenus have the designation of the MenuBarItemSubmenuHover class and are set to use a background image "hover" positioned on the far left (95%) and centered vertically (50%) * /.
    SLH MenuBarHorizontal ul a.MenuBarItemSubmenuHover
    {
    background-image: url (.. / SpryAssets/SpryMenuBarRightHover.gif);
    background-repeat: no-repeat;
    background-position: 95% 90%;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #CCCCCC;
    }

    /*******************************************************************************

    BROWSER HACKS: hacks below should not be changed, unless you are an expert

    *******************************************************************************/

    / * HACK FOR IE: to ensure that sub menus show above form controls, underpin us each submenu with an iframe * /.
    SLH MenuBarHorizontal iframe
    {
    position: absolute;
    z index: 1010;
    do-family: Arial, Helvetica, without serif.
    make-weight: bolder;
    color: #999999;
    }
    / * HACK FOR IE: to stabilize the appearance of the menu items. the slash in the float is to keep IE 5.0 analysis * /.
    @media screen, projection
    {
    MenuBarHorizontal li SLH. MenuBarItemIE
    {
    display: inline;
    f\loat: left;
    Background: #FFF;
    }
    }
    #wrapper #nav #MenuBar1 {}
    Clip: rect (auto, auto, auto, auto);
    Color: #FF0000;
    }

    You do not use the latest Spry files

    The latest version of the Adobe Spry 1.6.1 Framework it is the same version that ships with Dreamweaver CS4. If you are using Dreamweaver CS3 (uses Spry 1.4), its wise to upgrade your files to the latest version. This can be easily done by using Updater Spry who can be found here.

    I think that your problem will be solved once you have updated.

    GRAMPS

  • Problems with XML list

    Hey all,.

    I'm having a problem getting the information to display in a list of tile I created.

    Code:

    < mx:HTTPService id = "tempXML" url="https://{customer.text}.mysite.net/interface.php?action=showopen & amp; operation = showa ssets & amp; format = xml & amp; opstatus = crit & amp; username = {username.text} & amp; password = {password .text}"/ >
    < mx:Script >
    <! [CDATA]
    Import mx.collections. *;
    [Bindable]
    public var TileList1dp:ArrayCollection;

    private void initData (): void {}
    TileList1dp = new ArrayCollection (tempXML.lastResult.asset.fleet);
    }
    []] >
    < / mx:Script >


    < mx:TileList dataProvider = "{TileList1dp}".
    width = "344" backgroundColor = "#000000" color = "#ff0000" fontSize = "27" borderColor = "#000000" columnWidth = "300" rowHeight = "50" themeColor = "#808080" fontWeight = "bold" allowMultipleSelection = "true" id = "TileList1" height = "0" y = "202" x = "178" / >

    I can watch by fire bug and see that I see the XML being received, but I do not see the data displayed in the application.

    I'll try to find an example of the results Manager will get the
    characteristics of the TileList.

    I know I'm probably noobing this problem but I'm still new and unsure of how to receive.

    Thanks to Tracy, Paul Andrews, springframework, Peter Ent and all the others who were with me in the spirit of trying to understand this. In case someone has
    This same problem, I write the solution that fixed and this
    part is closed.

    Thank you once again.

    Mark

    Code:


    result = "OnResult (Event)" "
    URL="https://{customer.text}.mysite.NET/interface.php?action=showopen & operat\
    ion = showassets & format = opstatus & xml = crit & username = {username.text} & amp\
    password = {password.text}.
    />


    width = "344" backgroundColor = "#000000" color = "#ff0000" fontSize = "27".
    borderColor = "#000000" columnWidth = "300" rowHeight = "50".
    themeColor = "#808080" fontWeight = "bold" allowMultipleSelection = 'true '.
    ID = "TileList1" height = "0" y = "202" x = "178" / >


    Import mx.collections.XMLListCollection;

    [Bindable]
    private var _xlcMyListData:XMLListCollection;

    private void onResult(Event:ResultEvent):void {}
    var xmlResult:XML = XML (Event.result);
    _xlcMyListData = new XMLListCollection (xmlResult.. asset);
    }

    ]]>

  • Problems with contact list blackBerry Smartphones

    Hello!

    I have a BlackBerry Curve 9300, and a few days ago, I added a new e-mail account and synced my contacts with the email account list without realizing it. So I deleted the email account, so it would interrupt the synchronization and it didn't. Today, I deleted a contact in the list of e-mail contacts through the computer and since then every time I tried to open this entry app contact frozen. Then, I deleted the entry and now I can't add all other contacts...

    Does anyone know how to fix this? I would really appreciate it!

    Thank you

    Vanessa

    Can you at least temporarily remove and let me know if your address book works again?

    Options > device > Applications

    (or Options > advanced > Applications, if you're on an OS5 device)

  • RoboHelp 11-problem with dropdown lists fonts, size of the police and Zoom

    I have a user guide that was created before I became technical editor. I started using RoboHelp 7 and I do not know if this guide was created in an earlier version of RoboHelp. I myself upgraded to RoboHelp 9 and then to version 11. The file contains 3237 files, 480 records and the size is 64.5 MB. I had someone save me when I was away from the office. She used different fonts on certain topics than what has been used in the rest of the guide. (Arial was used in the guide, using Calibri). I am now updating of the guide and I can't change the font. When my cursor is sitting on the text within a topic title fields and police continue to Flash. Header flashes normal flashing title 1 and police Times New Roman and Arial. When I click on the drop down menu to police, I cannot select anything because the drop guard scrolling, if I try to scroll to the top menu drop-down continues dating back to Time New Roman. And it happens if fast, that I can't click on a selection. I tried you select the font in the topic and do a right click on the mouse select font. I am able to choose the font that I want, but when I click on OK, the police is not displayed in size, it should be. 12 very small poster font size. Anyone know what can cause this problem and what can I do about it? Thanks for any help you can provide.

    What happens if you choose no for the Style sheet associated with?

  • Problem with spark list and XML dataProvider

    I am VERY new to Flex so I'm probably doing something wrong, but I hope it means this will get a quick response.

    I use a list of spark related to a data provider. On the actions of the user, the list will be filtered. The problem I encounter is that when the xml result is one, she will eventually launch an error:

    Has no type constraint: cannot convert mx.utils::ObjectProxy to mx.collections.IList.

    Here is the code to reproduce the problem...

    Main.MXML

    <?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" 
     xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
     <fx:Script>
     <![CDATA[
      
     protected function singleItemButton_clickHandler(event:MouseEvent):void
     {    
      ItemService.send();    
     }
     protected function mutliItemButton_clickHandler(event:MouseEvent):void
     {
      var dataObject:Object = new Object();
      dataObject.multi = "yes";
      ItemService.send( dataObject );
     }
     ]]>
     </fx:Script>
    
     <fx:Declarations>
      <s:HTTPService    
       id="ItemService" 
       url="http://myserver/xml/itemXML.cfm" />   
     </fx:Declarations>
    
     <s:List id="theList" 
      x="60" y="29" width="200" height="251" 
      dataProvider="{ItemService.lastResult.items.item}" labelField="name"/>
    
     <s:Button x="77" y="287" label="Single Item" click="singleItemButton_clickHandler(event)"/>
     <s:Button x="172" y="287" label="Multi-Item" click="mutliItemButton_clickHandler(event)"/>
    
    </s:Application>
    

    itemXML.cfm

    <cfsetting showDebugOutput="No">
    <cfxml variable="result">
     <items>
            <item>
                <name>Item One</name>
            </item>
      <cfif isDefined('url.multi') AND '#url.multi#' EQ 'yes'>
                <cfoutput>
                <item>
                    <name>Item Two</name>
                </item>
              </cfoutput>
            </cfif>
       </items>
    </cfxml>
    <cfoutput>#result#</cfoutput>
    

    http://blogs.Adobe.com/aharui/2007/03/arraycollection_arrays_and_ser.html

  • Problems with the list of the button and drop-down list

    Hello

    I want my users to view revenue by country or city...

    to select country I use a "list of the button' and for the city I'm on a 'combo '... When my select user a country, the cities of filtered accordingly... everything works fine, except the following (it is in step 3):

    Step 1. When I select a country (let's say canada) report gives me an appropriate set of data...
    Step 2. When I filter in a city (let's say Toronto) everyting works very well according to the filter...
    Step 3. When I select another country (let's say the USA), I get no data displayed on my report but good news, it's that my drop down the city will update accordingly
    Step 4. to get the required data, I have to change city (let's say Chicago)...


    what I want is that when my user select another country (step 3)... then the report should display data for all cities and I used the logical

    Select rev table_country
    where
    (b.City =
    CASE
    When: P49_CITY = 'ALL' THEN b.City
    OTHERWISE: P49_CITY END)

    somehow, I want the P49_CITY to 'ALL' value when the user selects a country

    Please advice

    Hello

    This is the way of simply to do.

    1 make the country select list (P49_COUNTRY) a select list with submit
    2. create a conditional branch that dates back to the 49 Page
    3 do the conditional branch of type PL/SQL Expression. In the expression 1 enter

    :REQUEST = 'P49_COUNTRY';
    

    4. in the value of these items , enter P49_CITY and let these values in white.

    So when the country is changed the page will be submitted, take over the management of the status of the page and in the process put the city at null.

    Kind regards

  • Problem with the mobile Flex list control

    Hello world.

    I have a problem with the list control in Flex mobile.  I need create list in "Flex mobile" and I need that list items must have following structure. a single image, text and then another picture. How do I do this?

    Concerning

    Include a component with a custom converter.

    See the documentation for Flex: http://help.adobe.com/en_US/flex/using/WS03d33b8076db57b9-23c04461124bbeca597-8000.html for more details.

  • Problem with LOV Switcher

    11.1.1.2 ADF + ADF BC

    Hello

    I have a problem with the list of switch values, missing a piece of the puzzle

    In the object view I have:

    a notation attribute that has 2 lov defined for it - lov_a and lov_b
    a Type attribute which can have a value of 1,2,3,4 or 5
    a passenger attribure LovToUse which has the following expression: Type == 3? 'lov_a': 'lov_b '.

    In other words if the Type is 3 I would like lov_a to show otherwise, I want lov_b.

    I created an a jspx to edit and change the data in my view object.

    The attributes and the Type are on the jspx.
    Type is an autosubmit and side has a partial trigger on Type

    The idea is that when the user changes the Type via the user interface rating will change his lov depending on the Type.

    The problem I have is that when Type is changed to note without changing his lov because I guess the LovToUse attribute is not updated / refreshed.

    How to refresh LovToUse when Type is changed through the user interface and that is all I have to do to get note to use the correct lov?

    Concerning
    Paul

    You may forget to set the dependency of your attribute LovToUse.

    Check this box:
    http://adfpractice-Fedor.blogspot.com/2011/02/ADF-BC-multiple-lovs-for-Vos-attribute.html

  • Numbered RoboHelp 9 problem of HTML lists

    I have problems with HTML lists in Robohelp 9 which are converted from Framemaker 10 xml files related. The list numbering starts again after that article 9 and I can't find anywhere that could be configured!

    The configuration for the conversion in the "Conversion Settings" for the relevant paragraph of numbered list in Framemaker to Robohelp is "Convert AutoNumber to HTML list".

    Thank you very much in advance for the pointers.

    Kind regards

    Nick

    Are you sure you actually, it restarts from scratch? Have you checked the HTML code? My first thought after reading this was that you might have some problems with alignments and margins CSS to hide the number in front of your zero. Numbers that should be 10, 11 etc, but presents itself as 0,1, 2, 3 etc... in any case, I post an image which visualizes your output of HR.

    Edit: Have you tested a larger list (20 +) to see if things are repeated?

  • Problem of horizontal list

    Hi all
    I have problems with horizontal lists. I can't get the list items to accept filling in the LINES so that they appear vertically central to the navigation bar, while the horizontal alignment of the left. In addition, they don't seem to recognize the styles of link at all. Help, please! Here is my code. Thank you! K

    Lovecat_73 wrote:
    > Hi,.
    > I had a bit of a breakthrough with this link:
    > http://www.liberty.com.au/dev/test2.htm
    > Unfortunately, he isn't making vertical-align: Center of browsers exploring.
    > but beautifully in firefox. Go figure!
    > Some advice?
    > K
    >

    The complete code and the css I posted above can be found here...

    http://www.weesites.co.UK/LC73.html

    It works for me in IE6, IE7, FF2 and Opera9

    HTH

    --
    Chin chin
    Sinclair

  • Problem with list of customers after 1.02.11 WRT160N wireless firmware update

    I have just updated the firmware on my WRT160N to 1.02.11

    When I go to wireless-> Wireless MAC Filter, click list of wireless clients, I get a blank screen for the most part, and then my Internet access to the router no longer works. for example, I can no longer connect to the router via a browser.

    The router continues to work for cable customers and wireless, but the router web access does not work.

    I need to display the wireless clients because I'm having intermittent problems with my new Ipad to connect.

    Someone saw what is wrong?

    You have already updated the firmware of the router.

    After upgrading the firmware on the router, it is recommended to reset and reconfigure the router.

    Connect computer with the Ethernet cable to the Ethernet port on the router.

    Hold down the button for 30 seconds rest.

    Release the reset button wait 30 seconds.

    Cycle power to the router.

    Open the page of the router and configure your router settings manually.

Maybe you are looking for

  • How can I access windows, well I guess that it is a hybrid of 7 and XP, without knowing the password?

    I recently got a laptop of nineteen Ninety four dell. There is a password to access windows and the prompt is disabled. the system bios is not accessible, that tells me there's a. virus, how to reset the password there is no other user accounts to be

  • Error code 80072EFE during the update of Windows

    ERROR 80072EFE CODE WHEN ATTEMPTING TO UPDATE IN WINDOWS UPDATE HAS MADE SEVERAL ATTEMPTS. McAFEE, installed after the victory of security his. uninstalled. several issues w / programs "not responding" constantly and functioning very slow pc.  Compaq

  • Laptops Dell Studio 1555 network adapter in Vista problem

    I work with Dell Studio 1555 laptop computers that have Windows Vista Home Premium on them.  I had to reinstall Vista and drivers.  Now that it's all over I can't the laptop to connect to wireless internet.  I get the below error message: This comput

  • HUMAN RESOURCES

    I downloaded a few songs and remixed them and his work, but I had the yellow HR sign under the name of what it means? I edited the song on computer and as soon as I copied the songs that I saw this yellow marking on my xperia

  • Add constellation ES.2 hards on my current constellation of table s.3

    Dear all, I have dell power edge T620 server using sas constellation hard s.3 configured on matrix Raid 1 (2 hards) my current model: Dell Sas 2 TB, MODEL: ST2000NM0023 you want to add more hards but I found only the constellation ES.2 market Dell Sa