MenuBar tag not working?

I finally got FB4L working on Fedora 6. Now I am trying some
sample applications. I managed to get a small test application
working with a label tag. Compiling and viewing in FireFox went
smoothly.
Now I took the next step: the MenuBar tag. This one is not
working well. I used the sample code of
http://livedocs.adobe.com/flex/15/asdocs_en/mx/controls/MenuBar.html
I do not get a menubar, but a "textbox" with the content of
my XML text as it appears in my source code.
Anyone else has more luck with this MenuBar tag?
I suppose we can post these kind of bugs as the FB4L is still
alpha?
Regards,
Frank

The problem is not with Flex Builder, it's with the sample :)
In the menubar MXML tag, you need to specify the labelField
property. Otherwise, the menubar does not know what to display. Use
this and it should work:
<mx:MenuBar id="menubar" labelField="@label"
dataProvider="{myMenuData}"/>

Similar Messages

  • ScriptLink tag not working for application page sharepoint 2010

    <ScriptLink> tag not working for application page sharepoint 2010 for including javascript in application page, it appends either 1033 or _layout to path specified for javascript.But javascripts are located in custom document library on site and not
    in _layouts folder.
    Please help and explain in details as I tried lot on this.

    Hi,
    Use the following line of code
    <SharePoint:Scriptlink runat="server" Name="~sitecollection/Style Library/[YOUR SITE]/js/functions.js" Language="javascript" />
    Thanks,
    Vivek
    Please vote or mark your question answered, if my reply helps you

  • [svn] 3921: Fix for - @inheritDoc tag not working for get/ set overrides when you only override the setter of a base class

    Revision: 3921
    Author: [email protected]
    Date: 2008-10-28 06:23:00 -0700 (Tue, 28 Oct 2008)
    Log Message:
    Fix for - @inheritDoc tag not working for get/set overrides when you only override the setter of a base class
    QE Notes: Baselines for framework test will need to be updated.
    Doc Notes: None
    Reviewer: Paul
    Bugs: SDK-17304
    tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17304
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ASDocExtension.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java

    Revision: 3921
    Author: [email protected]
    Date: 2008-10-28 06:23:00 -0700 (Tue, 28 Oct 2008)
    Log Message:
    Fix for - @inheritDoc tag not working for get/set overrides when you only override the setter of a base class
    QE Notes: Baselines for framework test will need to be updated.
    Doc Notes: None
    Reviewer: Paul
    Bugs: SDK-17304
    tests: checkintests
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17304
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ASDocExtension.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java

  • ORACLE tags not working after 1.5.1 patch

    I have some logic in my template the looks up information from some Oracle tables. This logic worked fine in 1.5.0, however, after applying the 1.5.1 patch it does not perform the Oracle logic, but shows the Oracle code as HTML on the page. Here is the code in question: (This is not the entire code, but one HTML TD that comes before the Oracle code, and one HTML TD that comes after it)
    <TD align="center" valign="top"><A
    href="/pls/portal/PORTAL.home"><IMG src="#WORKSPACE_IMAGES#ihome.gif" alt="Home" border="0"></A></TD>
    <ORACLE>
    BEGIN htp.tableData(htf.anchor2('javascript:help_openTopic(''/insitehelp/Insite_Help.htm'', ''' || pkg_insite_general.help_link(v('APP_ID'), v('APP_PAGE_ID')) || ''')', '', '', '', '><IMG src="#WORKSPACE_IMAGES#ihelpl.gif" alt="Help" border=0'), 'center');
    END;
    </ORACLE>
    <TD align="center" valign="top"><IMG src="#WORKSPACE_IMAGES#ilogout.gif" alt="Logout" border="0"></TD>
    This is what displays on the web page:
    BEGIN htp.tableData(htf.anchor2('javascript:help_openTopic(''/insitehelp/Insite_Help.htm'', ''' || pkg_insite_general.help_link(v('APP_ID'), v('APP_PAGE_ID')) || ''')', '', '', '', '>

    Your removal of functionality in a bug fix has broken a production application for us. This does not seem like something that should have been done with a "patch"
    I have just read all that I can find on "shortcuts" and am not finding what I need.
    Here is what we are doing:
    We are using RoboHelp for our help content. We have a help icon and a help link on the header of the page. This is defined in our template. We have to have the name of the module (Page Alias) to link the page being run to the help content for that page. Since you do not have a system variable for page name or page alias, I have had to put this information into an Oracle table. I was looking that up with a function within the Oracle Tags.
    Can I create a shortcut that would create the following code pl/sql code into a PL/SQL function body:
    BEGIN
    htp.tableData(htf.anchor2('javascript:help_openTopic(''/insitehelp/Insite_Help.htm'', ''' || pkg_insite_general.help_link(v('APP_ID'), v('APP_PAGE_ID')) || ''')', '', '', '', '><IMG src="#WORKSPACE_IMAGES#ihelpl.gif" alt="Help" border=0'), 'center');
    END;
    and call this shortcut where this help icon needs to appear like:
    <TD align="center" valign="top">
    "CALLHELPWITHICON"
    </TD>
    I have done the above, but it does not work. What am I doing wrong, how can I get this to work? We have had to remove our help icons because of this patch.
    I thank you so for your research on this.

  • CFQUERYPARAM tag not working in GROUP BY clause

    I am getting an error whenever I put a CFQUERYPARAM tag in a
    GROUP BY clause. I saw on another message board someone was having
    a similar problem with the ORDER BY clause
    Here is a sample of what my code might look like
    select x, y, z from abc
    group by <cfqueryparam value="x"
    cfsqltype="cf_sql_float">
    Here is the error I receive.
    Error Executing Database Query.
    [Macromedia][Oracle JDBC Driver][Oracle]ORA-00979: not a
    GROUP BY expression
    Any insight?

    The cachedwithin and cachedafter functions store the query
    results in the server's RAM. That means, while it's cached,
    whenever you run it, you get the cached result instead of going to
    the database to run it again. This increases speed of course, but
    if the data changes during the cache period, you have accuracy
    problems.
    It does not create memory issues. In the administrator you
    reserve a certain amount of memory for query caching. If you exceed
    that amount, the last query in pushes the first query out, or
    something like that.
    With regards to what you are trying to do about binding
    variables in your group by clause, that's not what cfqueryparam was
    designed for. It was designed for
    where clauses (where this = <cfqueryparam etc>
    or insert queries (insert into my table (field) values
    (<cfqueryparam>
    and things like that.
    You are trying to use it for something other than what it was
    designed for, which explains why it's not working for you.

  • ITunes Explicit tag not working correctly

    Hello, I have a problem with manually added 'explicit' tag in iTunes. iTunes show tag correctly near the song, but there is no red 'E' label in the ''now playing'' box.
    How can I fix this problem?
    I tried to re-add a song into the library, it's not helps.
    I think, that this is the different tags in the file, how can I check the second tag? Maybe someone have a script to manually add that tag to AAC file?

    Same for me. I don't know why that happens. I restarted my Macbook, quit iTunes, and it still did not work.

  • CommadLink on the menuBar is not working

    Hi All,
    I started working with adf components recently........I got strucked in designing of webpages.Hope somebody can help me..........
    I am using menu2 facet to put menuBar in a Panelpage.Now i would like to put links to my static pages on that menuBar by using commandLink component.
    I declared help page as globalHelp in the navigation rules of config file.
    And for the Help command link i had given globalHelp as action property.But while i am running the project that link is not working..........So what might be the problem????????????
    Awating the reply..........
    Thanks!
    Simmi

    Frank,
    I appreciarte your response
    i worked in that way means created a bean class for the Help.jspx.And in that method i had return "help" as String message(action).N binding that to action property of the command link.Still it is not working.......
    Do i need to take commandButton and set action listner for that????????I don't think so becouse we r getting link to Help.jsps which is static page ...right?
    U can help me......
    Simmi

  • In Web.xml  welcome file tag not works

    Hi All ,
    I am developing simple web application using spring framework
    when i am try to add welcome file tag in web.xml with respective welcome page path but it not works.
    but when use jsp page without to having any property it works.
    what the problem with me
    Thanks

    Hi Frank
    Thank you for your reply.
    This is how I registered the session filter in web.xml
    <filter>
    <filter-name>SessionFilter</filter-name>
    <filter-class>com.avery.view.filter.SessionFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>SessionFilter</filter-name>
    <url-pattern>/faces/*.jsf</url-pattern>
    </filter-mapping>
    I'll try to use phaselisenter as you suggested.
    Also, one more thing please, in the session filter, I have something like this.
    public void doFilter(ServletRequest request, ServletResponse response,
    FilterChain chain) throws IOException, ServletException {
    System.out.println("JF--- Calling the Filter");
    if (request instanceof HttpServletRequest) {
    HttpServletRequest httpRequest = (HttpServletRequest)request;
    HttpServletResponse httpResponse = (HttpServletResponse)response;
    HttpSession session = httpRequest.getSession();
    String url = httpRequest.getPathTranslated();
    String path = httpRequest.getContextPath() + httpRequest.getServletPath();
    if (httpRequest.getRequestURI().equals(path+"/Login")) {
    System.out.println(" the request path is" + httpRequest.getRequestURI().toString());
    session.setAttribute("WELCOME", Boolean.TRUE);
    chain.doFilter(request, response);
    else if (session.getAttribute("WELCOME") == null){
    httpResponse.sendRedirect(path+"/Login");
    else {
    chain.doFilter(request, response);
    else {
    chain.doFilter(request, response);
    Do you think it looks right ?
    thanks
    Edited by: Lang on Apr 13, 2012 1:41 AM

  • Html 5 audio tag not working

    Hi, I am trying to create a web page that links to an audio file. I have added the <audio> tag which works in my Safari browser on my Mac but does not work on the i-phone. If I save the page by bookmarking and adding to my Home Screen I have more success. This is not a desirable option.
    Does anyone have any ideas?
    Glenn

    well for anyone else.
    my html was fine. in fact the server nginx was returning the wrong content-type and so i had to add the MIME types into my nginx config file.

  • XMII Query Selected tags not working

    I am using a query template for tag list against a UDS PI server and the "Selected Tags" dos not seem to wok. It retuns all tags or masked ones even when the check box "Use Group.Mask .....'  is unchecked.
    The UDS does not have groups since the alias tool  doesn't seem to allow wildcarding accomadating future tags.
    Product Version: 11.5.3 b66
    Thanks, Ed (for Shari)

    Hi,
    As Jeremy said, 'Use Group or Mask for Tag selection' is used for Current, History, HistoryEvent, and Statistics query modes. For namespace query modes such as TagList/GroupList it will not work. Please find the below link for you help:
    http://help.sap.com/saphelp_xmii115/helpdata/en/index.htm
    Hope it helps!
    Best Regards,
    Kedar

  • Struts tag not working with Jbo Tag-BUG??

    Hi
    I am developing application using Struts with BC4J and encountered this problem.
    In a JSP page if I have &lt;jbo:DataScroller&gt; tag and &lt;html:cancel /&gt; button, the button is not working.
    If I remove the datascroller tag cancel button works fine (the way it should).
    Not sure why this is happening, can Jdev team look into this.
    Thanks

    Sashi N Ravipati wrote : "Not using a DataScroller tag within a form tag is impossible. If u have an example of it let me know."
    File > New > Web Tier > Struts-Based JSP for Business Components > Complete Struts-Based JSP Application
    One of the files it generated for me was EmpView1_Browse.jsp:
    <%@ page language="java" import="oracle.jbo.*" errorPage="errorpage.jsp" contentType="text/html;charset=windows-1252" %>
    <%@ taglib uri="/webapp/DataTags.tld"  prefix="jbo" %>
    <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
    <html>
    <head>
    <META NAME="GENERATOR" CONTENT="Oracle JDeveloper">
    <LINK REL=STYLESHEET TYPE="text/css" HREF="bc4j.css">
    <TITLE><bean:message key="browse.title"/></TITLE>
    </head>
    <body>
    <jbo:DataTransaction appid="JdevModuleDataModel" />
    <h3><bean:message key="browse.header" arg0="EmpView1"/></h3>
    <table border="0">
      <tr>
        <td ALIGN="right"><jbo:DataScroller datasource="JdevModuleDataModel.EmpView1"/></td>
      </tr>
      <tr>
        <td><jbo:DataTable datasource="JdevModuleDataModel.EmpView1" edittarget="/edit_EmpView1.do"/></td>
      </tr>
    </table>
    </body>
    </html>A jbo:DataScroller tag is used and it is not within a form tag.
    success
    -Jan

  • My finder and Menubar are not working.

    My Finder is not working, I can open it, but when I type anything in the search bar, it looks for a little bit and then says 0 Items at the bottom of the window. Also if I go to the left hand side of the finder and click on the 'All Movies' file for example Finder crashes. (The Desktop Icons, menubar and dock disappear, the finder window closes and then the Desktop Icons, menubar and dock come back)
    Also The right hand side of my menu bar is frozen and whenever I hover the cursor over it, it shows the spinning beach ball.
    Thanks
    Josh

    The startup disk may need repairing.
    Launch Disk Utility located in HD > Applications > Utillities
    Select the startup disk on the left then select the First Aid tab.
    Click:  Verify Disk  (not Verify Disk Permissions)
    If DU reports errors, start up from your Mac install disc to make repairs.
    Instructions here >  Mac OS X 10.6: Reinstalling Mac OS X

  • Cfexchangeconnection tag not working for exchange server 2007

    We are using Coldfusion 8 -  64 bit. Over week end,  we migrated from Microsoft exchange 2003 to Exchange 2007. We are using cfexchangeconnection tag to get emails from exchange to our application. After recent update to exchange 2007 this tag is not working. we are getting following error
    "Unable to connect to the Exchange server using HTTP/HTTPS protocol"
    We have tried following :
    1. the certificate checked and is ok and lacated in right directory.
    2. We are using form based authentication
    Any help on this will be highly appreciated.
    Thanks
    santy

    If this is a migration to a new server I would check some things.
    Firewall access rules allow port 80 and 443, for a network firewall, and if a new server windows firewall (think Win Server 2008 firewall is enabled by default).
    For SSL connections, is the install certificate on the server match the server name you are connecting to in full?  Maybe an old certificate or something got installed on the exchange server.
    I haven't used this tag, but maybe you could try the username as [email protected], if you are just using "blah".
    Byron Mann
    [email protected]
    [email protected]
    Software Architect
    hosting.com | hostmysite.com
    http://www.hostmysite.com/?utm_source=bb

  • Anchor tags not working in FF

    Hello, I am new to website design and creation and I am having a rather weird problem. I originally designed my website using Google Chrome (which I will not do again). My website works fine in Chrome but certain links do not work in Firefox or Internet Explorer. When I attempted to re-create the problem on JSFiddle, there was none! Here is that link: http://jsfiddle.net/willwsharp/7S8LV/1/
    My error still persists however, so I must conclude that I am doing something incorrect in the Firefox browser. Thanks for any help in advance, I really appreciate it!

    I changed the z-indexes and it works now!

  • Click Tag not working

    I am very new to Flash. I used a pre-exisitng file to create mine. The previous Click Tag worked fine, but this publication gave me a new one to use:
    on (release) {
    if (_root.clickTAG.substr(0,5) == "http://www.google.com") {
       getURL(_root.clickTAG, "_blank");
    i inserted the google URL to test and it does nothing.
    this is the click tag that worked fine:
    on(release){
    getURL("http://www.google.com", "_blank");
    Any advice?

    If the top set of code is what you are using, the conditional might be what's failing to allow the command to work...
    if (_root.clickTAG.substr(0,5) == "http://www.google.com") {
    The substr method you use will be creating a string that only has 5 characters in it, starting with the first, so chances are you need to use...
    if (_root.clickTAG.substr(0,5) == "http:") {

Maybe you are looking for

  • Zen Vision:M 60gb - streamline version (2nd Ge

    Does anyone know anything about a streamline version of the 60gb (2nd Gen) coming out? i.e the same thickness as the 30gb version. Or is this just a rumour?Message Edited by amck75 on 08-25-20072:43 PM

  • [Maybe solved] Repeated prompts for username and password on HTTP(S)

    I'm new to IOS but I'm taking ICND 1 and ICND 2 to catch up. I've gone as far as configuring a 3560 switch from "scratch" in a test environment, and am in part one of ICND 2. Setting this switch up for HTTP administration, I've been prompted repeated

  • TS1372 I have an error message 1601 and yet I am referred to error messages in the 1400s.  Is this the same issue?

    I have an error message 1601 and yet I am referred to error messages in the 1400s.  Is this the appropriate article for figuring out why itunes does not recognize the ipod?  Apparently, this is preventing my device from loading new music.

  • Initial screen is different

    My initial firefox screen is google search, I have put my own image there. Everything has been fine and then for no apparent reason whenever I open firefox this initial screen has a very thick transparent white bar at that top of the image with my go

  • Siebel 8.1 integration with BI Publisher 11g

    Hello, I'm currently trying to integrate BI Publisher reporting with Siebel 8.1 at work. We've followed the guide named " [BI Publisher for Siebel Applications Guide|http://download.oracle.com/docs/cd/E14004_01/books/Reports/ReportsTOC.html] ", which