BUTTON IS NOT WORKING IN MOBILE DEVICE

Dear All,
I DEVELOPED A MODULE POOL PROGRAM WITH 2 SCREEN.
WHEN I CLICK NEXT BUTTON IT WILL CALL 2ND SCREEN.
ITS WORKING FINE IN SAP.
NOW I AM CREATING URL FOR THIS PROGRAM AND BY ITS I AM CALLING THIS PROGRAM IN MOBILE / BARCODE SCANNER  DEVICE.
INPUT SCREEN IS COMING WHEN I CLICK NEXT BUTTON ITS NOT CALLING 2ND SCREEN.
Pls suggest.
moosa

CLOSED

Similar Messages

  • SetTimeout() not working on mobile devices

    setTimeout() does not work on mobile devices ie. Safari on iOS 7.1.2 and Android 2.2.  What is the alternative that works on mobile devices?  Thank you.

    Hi Carlos,
    MS mobile browsers are crippled. They don't support many features known from IE. I would suggest to check MSDN for Windows Mobile documentation:
    http://msdn2.microsoft.com/en-us/library/bb158486.aspx
    You might also check the blog of IEmobile Team:
    http://blogs.msdn.com/iemobile/default.aspx
    Best regards,
    Klaus

  • HTML5 output is not working on mobile devices, including iPads and iPhones

    Hello,
    I posted a question about this last week but had no reply. So I'm posting it again as it presents a serious problem for anyone wanting to publish content to mobile devices from Captivate 6.
    The problem is that HTML5 quiz content runs incrediably slowly (it at all) and crashes the brower on mobile devices. I have tested this on an iPhone and 2 iPads in 2 different locations.
    This is a demo that shows the problems: http://sshls-dev.port.ac.uk/captivate_problems/
    (Running this demo on a standard laptop / PC will be fine and it will work perfectly. The problem only appears when the content is viewed on a mobile device).
    The problem is more extreem in the 'shorthand' demo. The quiz loads up the first question and then when I press submit it either freezes or closes the browser (Safari) completly. Occasionally it will progress to questions 2 or 3 but then the same happens.
    I am keen on finding an answer / workaround becuase at the moment it effectively means that Captivate cannot be used to display quizes on phones / iPads.
    I would be very grateful if anyone knows how to solve this problem to let me know.
    thanks,
    Emily

    Hi alex,
    Try it with any type of android system.
    regards
    ferry
    Op 22 feb. 2013, om 09:56 heeft Alex Pavelescu <[email protected]> het volgende geschreven:
    Re: BC menu not working on mobile devices
    created by Alex Pavelescu in Content Management and Modules - View the full discussion
    Hi Ferry,
    Just tested on an iphone 4 and it works fine. Please provide details for all the devices on which you have the issue (model type/name, os version, browser version)
    Kind Regards,
    Alex.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5093384#5093384
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5093384#5093384
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5093384#5093384. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Content Management and Modules by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • MenuManager in TableViewer does not work on mobile device (tablet with Win 8)

    Hi
    Welcome everybody This is my first post on this forum. I really hope you can help me out with this. It is kind of strange.... Ok, so I am developing RCP/SWT application, and it has to work on mobile device with windows 8 as well (10' tablet with windows Cool. So far so good - everything work pretty nice, except one thing that is really annoying. So I have this table, and user has possibility to use right click menu (context menu) on each row. Problem is that it does not work at all on mobile device. Right click on tablet is actually defined by pressing finger for longer period of time - then after 1 or 2 second menu should appear. Problem is that it does not at all. Funny thing is that when I connect a mouse using USB port to tablet I am able to open this menu Smile - it works completely fine. Menu works also with finger action when I press on empty (e.g. table without any data) I noticed that this issue is related with constructor style option SWT.FULL_FULL_SELECTION that is used for creating table. When I remove it from the constructor, right click works fine but there is not any data (no record is selected), so I can not perform any context menu action. Menu is dynamic, so depending on what data is loaded, the contain of menu changes. Main problem is that method menuAboutToShow is not called at all!. The code looks like that:
    Table table = new Table(parent, SWT.FULL_SELECTION | SWT.VIRTUAL | SWT.H_SCROLL | SWT.V_SCROLL | SWT.MULTI);
    table.setLinesVisible(true);
    table.setLayout(myTableLayout);
    createColumns(table, layout);
    table.setHeaderVisible(true);
    tableViewer = new TableViewer(table);
    tableViewer.setContentProvider(myContentProvider);
    tableViewer.setLabelProvider(myLabelProvider);
    MenuManager contextMenu = new MenuManager();
    contextMenu.setRemoveAllWhenShown(true);
    contextMenu.addMenuListener(new IMenuListener() {
    public void menuAboutToShow(IMenuManager mgr) {
    contextMenu.add(new MyAction(action)); // THIS PLACE IS NEVER CALLED WITH RIGHT FINGER CLICK!
    // dynamic filling context menu engine
    Menu menu = contextMenu.createContextMenu(tableViewer.getControl());
    tableViewer.getControl().setMenu(menu);
    getSite().registerContextMenu(contextMenu, null);
    Additional info: this tap-hold functionally is standard equivalent for right click on tablet device with Windows. I did not do any additional implementation for that. I think it should just work. I have several tables in my application and in all of those this problem appears. Any idea what may be wrong ?
    cheers,
    Pawel

    I have just installed SWT Example on my tablet (from here: https://www.eclipse.org/swt/examples.php#standaloneOutsideEclipse) and this same problem appears on the table example. I think it is general problem/bug. Should I report this as a swt eclipse bug ?

  • MenuManager in TableViewer does not work on mobile device

    Hi
    Welcome everybody This is my first post on this forum. I really hope you can help me out with this. It is kind of strange.... Ok, so I am developing RCP application, and it has to work on mobile device with windows 8 as well (10' tablet with windows . So far so good - everything work pretty nice, except one thing that is really annoying. So I have this table, and user has possibility to use right click menu (context menu) on each row. Problem is that it does not work at all on mobile device. Right click on tablet is actually defined by pressing finger for longer period of time - then after 1 or 2 second menu should appear. Problem is that it does not at all. Funny thing is that when I connect a mouse using USB port to tablet I am able to open this menu - it works completely fine. Menu works also with finger action when I press on empty (e.g. table without any data) I noticed that this issue is related with constructor style option SWT.FULL_FULL_SELECTION that is used for creating table. When I remove it from the constructor, right click works fine but there is not any data (no record is selected), so I can not perform any context menu action. Menu is dynamic, so depending on what data is loaded, the contain of menu changes. Main problem is that method menuAboutToShow is not called at all!. The code looks like that:
    Table table = new Table(parent, SWT.FULL_SELECTION | SWT.VIRTUAL | SWT.H_SCROLL | SWT.V_SCROLL | SWT.MULTI);
    table.setLinesVisible(true);
    table.setLayout(myTableLayout);
    createColumns(table, layout);
    table.setHeaderVisible(true);
    tableViewer = new TableViewer(table);
    tableViewer.setContentProvider(myContentProvider);
    tableViewer.setLabelProvider(myLabelProvider);
    MenuManager contextMenu = new MenuManager();
    contextMenu.setRemoveAllWhenShown(true);
    contextMenu.addMenuListener(new IMenuListener() {
    public void menuAboutToShow(IMenuManager mgr) {
    contextMenu.add(new MyAction(action)); // THIS PLACE IS NEVER CALLED WITH RIGHT FINGER CLICK!
    // dynamic filling context menu engine
    Menu menu = contextMenu.createContextMenu(tableViewer.getControl());
    tableViewer.getControl().setMenu(menu);
    getSite().registerContextMenu(contextMenu, null);
    Any idea what may be wrong ?
    cheers,
    Pawel

    Hi
    The "tap-and-hold" is not my functionality. It default SWT Table behaviour on tablet. In windows it self it works like that - to use "right click" you have to do "tap-and-hold". It is just the way it works on tablet I do not have any other application to test it, but I have several tables/tableViever in my application for presenting different results/data, and in all of those this problem appears

  • Photoshop button mousedown not working on mobile

    I am occasionally working on my business site in Muse, where I have a section of logos that use the Photoshop button feature.
    When you mouseover on the desktop, or click on mobile, a color version of the logo shows up as expected.
    I am using a similar function on a new site comp, using similar PSD files, with correct states applied, but the mousedown action will not work on mobile.
    In fact, in the name of science, I dropped one of the Photoshop buttons that works (from my personal site), and it won't work on the new site.
    I cannot see any difference here, but I'm not getting the same results. What am I missing? Thanks.

    The function works correctly here, in the "identity and branding" section:
    Home
    On this one, Pure and Frequensia are linked now, so please try any of the other buttons in reference to this question. Thanks.
    Index_B

  • Hot Fix for Skip Logic not working on mobile devices.  Me 1 - Adobe Support 0!

    This is just a tip to anyone having the same issue.  It seems that most mobile devices cannot process Skip Logic rules tied to a dropdown menu option.  It is important to know if you never tested this on a mobile device for youself so I strongly encourage that you check this on both Android and iPhone.  The single and multi selections DO work so that is the way to get around this issue.  Here is a sample of our actual web application www.gmcloans.com/quickquote.html with the functional fields.  I created a simple sample test application https://adobeformscentral.com/?f=n8qBqcnKMxR5mRmbAPwkqQ (with QR code for quicker access if you're not on a device now) utilizing all of the selection features for you to test with other devices to help save you the time I lost.
    Pro:  It works.
    Con:
    Lost time...searching for this only forum (at least that I could find) with a solution and having rearranging your application. 
    Uniformity and compaction....If you have a long dropdown list dependent on Skip Logic rules you will have to get confortable with having a lot more information spralled across your application.  
    Adobe Support...To my frustration I had to spend two (2) 20+ minute phone calls with support about this issue only for them to tell me that they don't have a fix and never had anyone express this particular conflict issue with them. 
    I hope this helps you.
    Brian Taylor

    I am still trying to find a version of your device here. The closest I got was a HTC Inspire 4G /w Android 2.3 and the skip logic on the dropdown worked correctly. I'll get back to you once I get to try it on a HTC DNA /w Android 4.1.1.
    Meanwhile were you able to try your form on any other mobile device? I know that you want this to work on your device and we will fix this if there is a bug there... but I'm just curious if you were able on your side to see it work on a mobile device at all.
    Gen

  • Serious JSF 1.2 flaw ?! - CommandLink not working on mobile device

    Hi All,
    I really hope I'm missing out on something here, but I suspect there is a serious problem with the JSF 1.2 RI when used to build an interface for a mobile device. The command link generates JavaScript that is not compatible with the Windows Mobile's Internet Explorer (tested against 2003 and 2005 versions), making it impossible to call the actions behind them.
    I did not encounter this issue when using the RI for the JSF 1.1 specification, so it was a very unpleasant surprise when trying to migrate to JSF 1.2 and Faceletes. As far as I can see the problem lies in the use of dynamic javascript functions in the 'jsfcljs'-function. The browser fails to process the inline functions like this: f.dpf = function()  {...}Has anyone encountered this issue too, and if so, could you please tell me if you've found a workaround?
    Is this a known issue or bug (searched for it but couldn't find) and if it is a bug, when can we expect to see a fix for it?
    A great many thanks for any help !!!

    If you build mobile first, you don't even need to specify a media query for it.  It is the default layout.
    body {font-size:75%}
    Further down in your CSS, add a media query with rules for tablets:
    /* Special Rules for Tablets */
    @media only screen and (min-width: 482px) and (max-width: 1024px) {
         body {font-size:100%}
    Finally, add a media query with rules for desktops:
    /* Special Rules for Desktops */
    @media only screen and (min-width: 1025px) and (max-width: 1280px) {
         body {font-size:135%}
    Happy 4th of July!!
    Nancy O.

  • Form not working in mobile devices

    Hi, i have created one form using adobe pro & it's work well in my pc. my form should work in the Adobe Reader app on iPads and Android tablets also. Unfortunately, it's crashes the app on both devices.my form has text fields & combo boxes. here i have uploaded my form, so pls check it & tell me how i can solve this matter. thanks in advance..
    295022667815525ST234612_V1.pdf - Box

    Hi,
    Acrobat 6 and Designer 6 only support the older version of forms based on XFA 2.0. Details here. They should upgrade.
    Hope this helps,
    Marc.

  • Not working in mobile device with port :8083

    Alo! I've been following step by step the guide in here Shadow + xip.io: Virtual Hosts Workflow Simplified | Adobe Edge Inspect Team Blog and I could see the site on my desktop. My "problem" is that when I try to watch on the iPhone I got a 403 error. Anyone knows why? Does anyone could succeed with drupal and 8083 ports? I'm more designer rather developper and I guess this error is related with some permissons with apache configuration but wich apache? The desktop one or the acquia app?? I've spent almost two days seraching and trying everywhere without succeded. Hope anyone could help. Thanks in advance!

    CLOSED

  • Web Pages not loading on Mobile Devices

    Browsing web pages not working on mobile devices
    I have bt inifinity 2, from my laptop and mac (with same wifi connection) webpages load no problem, from my android tablet and iphone (with same wifi connection) web pages not loading. On these devices I can load youtube videos, and apps have connections/load data, it seems to be limited just to browsing webpages.
    I have tried changing ssid for the 2 channels, I have tried disabling wifi on the router, and using apple time capsule as the router, everything seems to result in the same problem, you cannot browse web pages on mobile devices.
    previously i had adsl from bt and didnt have these issues.
    Solved!
    Go to Solution.

    Try turning Smart Setup off.
    http://bt.custhelp.com/app/answers/detail/a_id/44328/~/switching-smart-setup-on-and-off-on-the-bt-ho...
    Devices where there are known to be problems include:
    Some Apple devices including iPhone 5 and Apple TV
    some Android smartphones
    Xbox<
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • HELP - Edge Animate issues - buttons/symbols not working/disappearing in portrait mode on mobile devices

    Edge Animate - Issues - buttons/symbols not working/disappearing when in portrait mode on iPad and mobile devices, but in landscape version everything is fine.
    Everything works cross broswer on Desktop - Safari, Chrome, Explorer and Firefox - mobile devices prove glichy... anyone else experience this?
    It's a regular issue of mine, particularly with complex animations. Symbols disappear
    - is it something to do with overflow?
    - responsive scaling?
    I have no idea.

    Since no one has answer this post, I recommend opening  a support case with CSS as they can work with you to solve this problem.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Buttons work on mobile devices?

    I created a button to show a hidden frame but when i preview in Content Viewer it does not work.
    Will it work on iPad or Android devices? i cant test right now only on the Content Viewer and need to know before continuing
    Also if it does not work can you anyone please provide a way to to this that will work on mobile devices
    Thanks

    It sounds like you want to create a hot spot button. See this article: Hot Spot Button Workaround for InDesign Dig Pubs
    You might want to download the free DPS Tips app on an iPad. It shows how to create this and other effects.

  • HT4623 Hi I have a question, I am operating my iPhone 4S on 6.1.1iOS, as my power button is not working, I have jailbreoked my device so that I have a option to restart and shutdown my device. If i upgrade to iOS 7 do i have such option?

    Hi I have a question, I am operating my iPhone 4S on 6.1.1iOS, as my power button is not working, I have jailbreoked my device so that I have a option to restart and shutdown my device. If i upgrade to iOS 7 do i have such option?

    Jailbreaking your iPhone forfeits your ability to receive any support on that phone, including from this forum.
    You'll have to search elsewhere for answers to your issue.

  • HT201401 my home button is not working don't know why.my mobile phone is in warranty so please repair it or give me another phone so i can use it.please solve my problem i am in tension because of this problem

    my home button is not working don't know why.my mobile phone is in warranty so please repair it or give me another phone so i can use it.please solve my problem i am in tension because of this problem

    either you can call apple care
    or
    alternatively take it back to the reseller and have them give you new phone . unless obviously the button broke down due to mishandling

Maybe you are looking for

  • Wireless and network printing transcript for Meet the Experts

    On March 16th, HP hosted its first online chat event on wireless and network printing. Below is a transcript of that session. I am in the process of planning the next chat event. I would love to hear what topics would interest you, what day of the we

  • Hard drive is not available

    Needing help. My MacBook Pro (late 2010, 13", 250GB/4GB Ram) lost access to mail, then iChat, then address book. Each time I tried to access the mail program or chat, it would crash. Fixed and verified permissions, cleaned out cookies, ran disk utili

  • HP Laserjet 2600xi new drivers prints garbage spits out blanks

    A friend called me about this problem and all I knew to do was to get the latest drivers and install them after removing all traces of old HP software. They're using an eMac with OS 10.4.11. The problem may have a simple solution. When they send a fi

  • Two new apple tv's in the home network...

    Hi, Recently i bought both my kids an apple tv. I am worried now that my home network will get jammed or get really slow as the both watch films from the shared iTunes library on my iMac. The actual media files are on an external hard disk, witch is

  • FOX formula works wrong. Why?

    Hello, My scenario: <b>My planning layout filled with data:</b> 0CMMT_ITEM:  0FM_AMOUNT1  0AMOUNT(data from fact cube) <i><b> A.2.2.2____________0_____________500        A.3.3.3____________0_____________0        A.1.1.1____________0_____________0</b>