Question about ActionBar on the first screen of the application

Hi, I have a question about the actionbar behavior in the first screen of the application

index.htm pushes immediately main.htm with actionbar. ActionBar clicks and responds correctly until I have add overflow on some buttons.

When I click on the button of overflow, the overflow is displayed at the bottom of the page, the top of the overflow is put in correspondence with the upper part of the actionbar so buttons actionbar overflowing content is not visible.

I reproduce this problem with the sample application.

This is expected behavior? Is there a way around it?

I was able to reproduce the problem and have connected it

https://github.com/BlackBerry/bbUI.js/issues/329

Tags: BlackBerry Developers

Similar Questions

  • Question about backing up the Lenovo factory

    Hi, I have an E530, I have a question about the Lenovo factory back, I'm a little unsure of the difference between the bootable media and just backup data.

    Is the bootable media just the equivalent to a disk of windows 7?

    the option data backup all currently installed on your laptop?

    I tried with the two checked options the other day and I got to the point where he solicited for disc DVD - RW 6 so I cancelled because I didn't know how much in total he would do, would be nice if he told me so I could better prepare.

    Also, if I was ever to use the data disks, would you boot from the startup disk you did first then also boot from CD 1 of the data disks?

    Hi James,

    We create these disks to customers of all time.  In our case we have Win 7 Pro, pre-loaded.  Win 8 discs are already included with the device.

    The process of factory recovery disks will create a set of disks [the E530 in the USA, to 4 DVD - Yes it would be nice to know how much to advance] will allow you to restore your machine out of the box.  The first disc it creates is a boot disk - you start from this when you start the recovery process - that's all it is. No file data/images for the restore process.  Other disks contain image files needed for restoration.  This does not save the user data. It is a different process.

    Since you started & cancelled the process, I'm not sure that it will allow you to re - burning the discs.  Because of the MS license restrictions, you are allowed to burn discs once.  We got all the way on the last drive and had the process fail [we don't know why - maybe bad disc?] and we cannot redo records because he thinks that we have successfully created their.  So, we have to call Lenovo support and ask them to send us a set of disks in Windows 7.

    I hope this helps...

    Al

  • where to post a question about iTunes on the iPhone?

    I have a question about a problem with iTunes on the iPhone (iOS), but I do not see a 'Community' with this title (or anything close;  I have no idea what "iTunes U" means).

    For lack of a better idea, I just posted to the community "iTunes for Mac", but I don't think that's true.

    Please let me know where I should post to an iTunes on iPhone issue.  Thank you.

    It should probably be posted in the community Using iPhone Apple Support communities. I'll ask a host spend your question in iTunes for Mac, if it has not already been moved.

    EDIT: Just read your message, and I think it's probably better where it is (because you need help syncing your songs via iTunes on your Mac). He should be fine here, but if the moderators believe that he should be somewhere else, they will move for you.

  • Question about freeze on the leave request application

    Hi, expert,

    Right now, our application would be permission to the user background process starts.  In the case that a part of the permissiion refuses here, we would like to request permission from the user again once a day (which we he did yet).

    However in the past, I saw the post related stuck permission and also this message "BlackBerry freezes on application of rejection" ( http://supportforums.blackberry.com/t5/Java-Development/BlackBerry-freezes-on-rejected-permissions-r... ). I'm so worried to again ask the time other than the device to start. I've added code to test anyway to ask once a day if certain permissions are denied. My code works fine and I don't have the issue of the freeze even if the permission is denied.

    There are conclusion of couple of this post that I couldn't reproduce here:

    1 Simon said that we would need an external application which I did not because I checked the authorization prior to the construction of our background application. See the code later for more information.

    2 Nitin says the following:

    When you launch the Application RIM Authorization Manager first (using the AutoStart or ApplicationManager or any other method) - you can add permissions with no problems. But if you raise the authorization Application Manager (in the case where the user selected Deny first time), you end up with nightmare ' Please Wait '

    which I have seen my tests on the "BOLD" and torch device (for 1, in fact it has been tested on a certain devices since it is that way on my free agent)

    Since I don't really test on many features, so I'm just wondering if this gel is also linked with a specific type of BB device. It would be appreciated for any suggestion.

      private static final int[] ALL_PERMISSIONS =
        { ApplicationPermissions.PERMISSION_APPLICATION_MANAGEMENT,
                ApplicationPermissions.PERMISSION_DEVICE_SETTINGS,
                ApplicationPermissions.PERMISSION_CROSS_APPLICATION_COMMUNICATION,
                ApplicationPermissions.PERMISSION_DEVICE_SETTINGS,
                ApplicationPermissions.PERMISSION_EMAIL, ApplicationPermissions.PERMISSION_INTERNET,
                ApplicationPermissions.PERMISSION_FILE_API,
                ApplicationPermissions.PERMISSION_SECURITY_DATA,
                ApplicationPermissions.PERMISSION_LOCATION_DATA,
                ApplicationPermissions.PERMISSION_MEDIA,
                ApplicationPermissions.PERMISSION_ORGANIZER_DATA,
                ApplicationPermissions.PERMISSION_PHONE, ApplicationPermissions.PERMISSION_WIFI,
                };
    
        }
    
        public static void main(String[] args)
        {
            LogInstance logInstance = null;
            String launch = null;
            try
            {
    
                if (args != null && args.length > 0)
                {
                    launch = args[0];
                }
                if (launch != null)
                {
                    if (launch.equals("autostartup"))
                    {
    
                        //here is the code to check all the permissions for app
                        checkAllPermissions();
    
                        logger.debug(logInstance, "Background App is entered");
                        BackgroundApp app = new BackgroundApp();
                        app.init();
                        app.enterEventDispatcher();
    
                    }
                    else if (launch.equals("gui"))
                    {
                        //here is the code for UI process
                    }
    
                }
            }
            catch (Throwable ex)
            {
                ex.printStackTrace();
                logger.error("got exception for starting the agent " + ex.getMessage());
    
            }
        }
    public static boolean checkAllPermissions()
        {
    
            try
            {
    
                Logger.infoStatic(loggerName, "Checking all permissions");
                int count = 0;
                while (count < ALL_PERMISSIONS.length)
                {
    
                    if (current.getPermission(ALL_PERMISSIONS[count]) != allow
                            && manager.getMaxAllowable(ALL_PERMISSIONS[count]) == allow)
                    {
                        Logger.infoStatic(loggerName, IUserProfileDao.PERMISSIONS_NAMES[count]
                                + " is not set to allow.");
                        updated.addPermission(ALL_PERMISSIONS[count]);
                    }
                    count++;
                    if (count != ALL_PERMISSIONS.length - 1)
                    {
                        continue;
                    }
                    if (updated != null && updated.getPermissionKeys().length > 0)
                    {
                        Logger.infoStatic(loggerName, "Invoking permission screen");
                        return manager.invokePermissionsRequest(updated);
                    }
                }
            }
            catch (Exception e)
            {
                Logger.errorStatic(loggerName, "Exception wile checking permission" + e);
            }
            return true;
        }
    

    Before OS5 only one application can request at a time. Often, this would cause a freeze if another application has requested permissions while dialogue was still in place. This has been fixed since OS5 and upward.

  • Question about to browse the lines of a viewobject

    I want to iterate over the lines of a viewobject. So, I use the following code snippet to do:

            String amDef = "model.service.TestAM";
            String config = "TestAMLocal";
            ApplicationModule am = Configuration.createRootApplicationModule(amDef, config);
            ViewObject vo = am.findViewObject("EmployeesView1");
            RowSetIterator iterator = vo.createRowSetIterator(null);
            iterator.reset();
     while(iterator.hasNext())
            {
                Row currentRow = iterator.next();
      System.out.println("Value: " + currentRow.getAttribute(1));
            }        
            
     iterator.closeRowSetIterator();
     Configuration.releaseRootApplicationModule(am, true);
    

    Now, I had a question about this code snippet. He get all records from the table of data to the model layer, that is, to the application server? If so, what part of the code for this? vo.createRowSetIterator maybe?

    Your example of code appears that I wasn't there. The default iterator and one that you get by vo.createRowSetIterator are different.

    And do not forget to close the iterator, you created as you lose in other resources.

    Timo

  • Question about mismanagement of the effects in the construction of sequence

    Hi all

    I read the BPEL 2.0 document and met a question about management failures and the normal flow of control in the < sequence > construction.

    For example, in the following code fragment:

    <>sequence
    < call...
    < catch faultName = gt; a.
    < / call >
    < receive... >
    < / sequence >

    If fault one is taken and processed by error handler, when the fault handling ends at will are receive > activity start or jumped?

    According to the document: < receive > will begin when < call > complements, but the 'complete' includes the 'ends in vain", (i.e. a fault is stuck inside the < call > and dealt with)?

    Hope you can help me and thank you very much.

    Published by: user8301699 on April 9, 2009 19:04

    Hello

    You have reason, 'full' includes the 'ends in vain", (i.e. a fault is taken inside the and treated).

    Hope this answers your Q.

    See you soon
    Rémy Pucha

  • Question about graphics on the Satellite A200-1VO card memory

    Hello
    How do you assign more memory to the graphics card on laptop Satellite A200-1V0?
    Thank you

    Hello

    in your case it s not possible to change the size of graphics by yourself, memory as graphics memory in your machine is shared with main memory, so if you upgrade main memory and graphics memory should increase. But this question is governed by the chipset and the user has no influence on it.

    Welcome them

  • QUESTION about to connect the calling WinsCard.dll drive

    could not get the list of player and connect the player successfully by call winscard.dll under C:\Windows\system32 folder in my local PC, but the other PC could do that.

    My PC environment: 2002 XP, SP3
    the version of winscard.ll is August 4, 2008

    Hi Yang Yu,

    1. Is the issue with the computer recognizes the card reader or the card reader can't read the card?
    2. What is you receive the exact error message?
    3. What is the number and the model of the card reader?

    Refer to the article below and try the steps mentioned, if you use Windows XP Professional x 64 edition.

    A universal serial bus smart card reader that is connected to a Windows Server 2003-based computer may not detect the smart card

    http://support.Microsoft.com/kb/919922

    Your question does contain all the required information necessary for us to help you. Please provide more relevant information to continue troubleshooting as a result.

    How to ask a question

    http://support.Microsoft.com/kb/555375

  • Question about vMAC on the DLR LIF

    Hello

    Based on the design of NSX Guide: "every LIF has assigned an IP address, which represents the default IP for the logical segment L2 bridge, it connects to a vMAC address. The IP address is obviously unique by LIF, then that same VMAC is attributed to all LIF defined"

    This test in the HOL laboratories, I started a ping from 172.16.10.11-> 172.16.20.11.  I configured a mirror port with source such as app-sr-01 a (172.16.20.11) (not available on servers web/app HOL tcpdump!). Looking at the MAC addresses on the package 'in' GRE encapsulated packet (see below cliché) I have a few questions:

    1. whence the source MAC on the 00:50:56:f1:f7:a2 of ICMP request packets? What cli command would show this MAC address?

    2. If each LIF must have the same vMAC, "arp - a" output on the corresponding servers shows different MACs for 10.1 and 20.1 LIF.  Is this expected or a Nested lab thing or did I miss something?

    vmac-question.png

    1 MAC SRC in the query is almost certainly a pMAC for the ESXi server where the web-sv-01 has. You should be able to see in "net-vdr - C-l" running on this host.

    2. "arp - a" output for your web-sv-01 a don't look right, you should see VMAC (02:50:56:56:44:52) for all DLR LIF. What version of NSX do you use?

  • Question about deleting of the LDAP user and integration

    In the Document "Management Console Help", he States:

    "You can't invite accounts of users that are mastered in a user directory LDAP; These accounts are created automatically when you synchronize the LDAP directory. »

    This means that after you configure an LDAP domain, the users specified by the filter should be automatically attracted to OnTrack? I don't see the ldap users during execution of an empty search for the administration console. At this point, I can also connect to the OnTrack using a valid LDAP user. I was trying to see if OnTrack worked similar to the Complutense University of MADRID, where the OnTrack user account would create once the user logs in the application.

    What I can do, is go to "Create a user" and enter a valid ldap user's email address. then I see this user in the full search. This user can also connect successfully.

    I wanted to know what was the expected behavior: it should be a 'register' required ldap users in ontrack before auth in the app? Is there a synchronization process that must be executed to pull in the ldap users?

    Also, is it current best practices of removing users? I see in the administration console there is a note that says: "Note: removing users is not supported."

    As always, thanks for the info!


    Thank you
    -ryan

    Ryan Sullivan | ECMconsultant
    http://www.ecmconsultant.NET/
  • BlackBerry Blackberry Curve Smartphones - question about symbol on the front screen...

    Hi all

    I have the blackberry curve smartphone lilac, and recently a little symbol "appeared" at the top of the screen, in the same place as the "new message", "new email address" etc. icons are displayed.

    It is a white circle with a white arrow pointing South West and black in the middle of the circle and a small red star on the top right of the icon, the same that appears in the top right...

    He now has a small number 2 beside him, assuming that I have now 2 new all what it says... However, I don't know what that means, or how to get rid of!

    Advice please someone?

    See you soon

    Katie

    Katie, Hello and welcome to the Forums of Support BlackBerry.com.

    You have two apps in AppWorld who call for an upgrade. Check App World > my world.

    And on your BlackBerry, in the list of your key messages, clear messages related to App World.

  • Question about scripts in the form under repeatbel objects

    Hello

    I'm working on the creation of a form that has a secondary form that can be repeated as many times as the user wants. There is a button 'Add' that creates an instance of the secondary on the form form, when you click on it.

    The secondary form I have 5 numeric fields say a1 - a5 and 1 field b1 which is the sum of all these 5 fields.

    On the main screen, I have a 2 fields - say t1 and f1.

    The requirement is t1 = f1 + b1 + (instance sous-forme 2 B1) + (sub-form instance 3's b1) + and so on... .depending on as many instances sub-shape there that the user adds.

    I created actions using the Action Builder such as when none of the a1 to a5 fields are out, b1 will be updated with the sum of a1 - a5. At the same time t1 will be updated with the sum of f1 and b1.

    This works very well for 1 instance of the form under. But when click on 'Add' and a second instance of the secondary form is added, then the script does not work as it did for the first instance of the secondary form. So for all instances of the subshape added, when values are added to a1 - a5 and the fields are exist, b1 not updated.

    How can I fix?

    See attached form that I create for clarity.

    "The total number of hours worked this week" are the t1 I was talking about. See how it is updated when values are entered in all areas of the time. It works great with the default instance of the form on T100/strategic/advantage customer information as well. But when I click on the button "Add Customer" to add another instance of the form sub, it does not work as expected.

    Please let me know if it is still is not clear and I can explain the problem.

    Hi Ameeth,

    Please find below the link that has your document.

    https://workspaces.Acrobat.com/?d=OEkwisQ99LXgJ4e9GrCnZg

    Hope it works very well...

    I don't know why you created these functions?

    Let me know if you need any clarification.

    Thank you

    Sofiane

  • Question about pre-ordered Album, (first time)

    For my birthday my sister gave me a $ 25 Itunes gift card and I went and pre-ordered the new Album of Metallica Deluxe, (The Set 3 disc) and I confirmed my purchases of 14.99 and my question is,.

    Has paid for the entire album in full, or each track when you click on the pre-ordered button? I am responsible for the 1.29 for the first single and again here second single, (two songs)

    Will need me even more money or the 14.99 will always cover the entire album?

    Will need me even more money or the 14.99 will always cover the entire album?

    14.99 + tax will cover it.

    When you pre-order, you pay for the titles as they become available and then pay the balance when the full album is available.  In the end, you have the complete album for the price of the correct album.

  • Question about consumption on the Satellite A660-10W

    My A660-10W (new) was wrong and Toshiba (Mafil in Israel) has changed the hard drive.
    Now the computer acts differently that before when I got it like new.

    For example; and my question is:
    1. After about 15 minutes, it automatically goes into sleep mode.
    I understand that the setting can be changed, however I would like to know if this happens when something is running?
    either I left the WD external BACK-UP running, but he fell asleep...
    2. the same thing will happen if Im watching a movie, for example?

    Thank you

    Laptop can't handle in different way. I guess you are using the recovery of images (Toshiba original Win7) and parameters are exactly the same as before.
    # Yes, you can change it. Simply enter the change plan settings for the power plan that you use, and where you can change the time when the laptop should go to mode "Eve". You can also disable using Pétion NEVER.
    # I can't say with certainty, but on my computer laptop doesn t go "standby mode", when I watch the movie. Test it. Set for 2 minutes and put on a movie.

  • Question about brightness of the display on the Satellite L650

    Recently, I have a Toshiba Satellite L650-12 q. For the first time I used the laptop for a long time, for example 2 hours and I realized that after an hour and a half of the brightness of the screen automatically augmented or contrast so increased.

    When I tested the films and photographs the faces seem to be too bright. I then rebooted the laptop and the screen when back to normal and the contrast was fine. Y at - it some sort of setting that auto adjusts the brightness for extended periods of use or monitor drivers do I updated.

    Thank you

    I've never heard anything like this and I really don t understand exactly what is happening.
    In each power plan you can set the brightness of the screen. Please check the power options and also display options in the advanced power settings.
    Change these settings to see what will happen next time.

    In the end, I think that you don t need updates. You have more recent laptop and I'm pretty sure that the latest drivers, tools and utilities are already installed.

Maybe you are looking for

  • Cannot synchronize 30.0 FF on Ubuntu with an existing session on FF 29.0.4 W $ 7

    Hello I've used for a long time FF on W$ 7 to surf.I have a long list of bookmarks. I would return on a ubuntu for my daily surf session, and I want to synchronize my W7 FF settings with the newly installed Ubuntu FF.But it does not work. W7 use FF 2

  • Calibrate the compass of the iPhone?

    I have a new iPhone OS (iOS 9.3). According to Google Maps, the streets of my neighborhood are perfectly North/South and East/West as close as my eye can detect, both within a few degrees maximum. But the compass in my iPhone shows them being about 1

  • TestStand Debug Deployment License Question

    I'm a little confused by the licensing OR and need advice... I have a PC that I use with a contract manufacturer that is set up to run LABView and Teststandapplications. It was working fine until recently, I've updated this PC and receive the followi

  • Having problems installing stylized Ethernet driver for HP Pavilion dv6-6c35dx

    I just bought this laptop and put my licensed copy of WIndows 7 Ultimate 64 - bit edition on it. I downloaded the RaLink driver installation program for the local wireless network and it says that it supports RT5390, RT3592, RT3090 wireless LAN chips

  • Randomly uninstalled video card and now I'm having computer problems.

    For some reason any yesterday, I came home after leaving my computer on, just realize that it crashed. I restarted my computer and found that, for some reason, my video card driver has been uninstalled. Driver Modem PCI has also been uninstalled, but