How do I prevent Shuttle from "refreshing" when page submitted?

Hello all,
Does anyone know how to prevent a shuttle item from "refreshing"(ie loading all the items again) when the page is submitted?
Thanks

Hello,
>> Could you tell me how to set the right side width to zero? Not sure how to do that.
Basically, it should be part of your submit button code. Let’s say that you have a submit button called ‘SUBMIT’, and a shuttle item called ‘P1_SHUTTLE’. You should set the target to a URL, with the following:
javascript:$x('P1_SHUTTLE_LEFT').length=0; doSubmit('SUBMIT');Regards,
Arie.

Similar Messages

  • How do I prevent Mail from opening when I click an email address in Safari?

    My wife and I both use Yahoo! Mail. Neither of us uses the Mail app to manage our email. How do I prevent Mail from opening when we click an email address in Safari?  Is it possible to direct Safari to open a separate web browser prompting us to log in to our Yahoo! Mail?

    Hmm.. probably not.
    You want to open Mail. Then go into Preferences > General and you will see something similar to this:
    In the area marked Default Mail reader click on the pull down and at the bottom of the list it will say Other. You can see if you can select Safari here and if that will open up Safari.
    Good luck.

  • How do I prevent iTunes from opening when I pug in my iPod?

    How do i prevent tunes from opening when i plug in my ipod?

    This will occur when there are photos and/or videos in the Camera Roll, which should be imported by your computer as with any other digital camera.
    Depending on the iPhoto version you are running, this can be done via iPhoto preferences > connected camera opens > select no application.

  • How can i prevent iphoto from opening when i plug in my iphone to the computer?

    Hi There,
    I have  a question, when I connect my iPhone to the computer the iPhoto automatically opens.
    how can i prevent this from happening? it always slows down my computer.
    any help will be appreciated.
    thanks

    Image Capture (in your Applications Folder) - In the preferences you can decide to 'Do Nothing' when a camera is connected.
    Some versions also have this option in the iPhoto Preferences.
    Regards
    TD

  • How do I prevent Elements from launching when I connect a flash drive?

    When I connect a flash drive or SD card to my computer, Photoshop Elements automatically launches a component to save and organize my photos. I already have a system in place to organize my pictures so do not want to use the one from Elements. How do I prevent the program from launching automatically?

      On Windows go to the Control Panel >> AutoPlay
    And change your settings to “Always Ask” for photos and videos and save.
    If your camera, phone or other devices are listed at the bottom you can also change those settings.
    Click to view

  • How can I prevent iPhoto from launching when I insert an SD card

    I recently upgraded to a new iMac retina and am having trouble disabling iPhoto from launching when an SD card is inserted.
    I have gone to iPhoto setting and disabled iPhoto from launching when a camera is connected.
    I have also gone into image capture and selected no application as the hidden option for SD card actions when inserted.
    Unfortunately the issue persists... two questions: can I do a terminal level disable to prevent iPhoto from launching or can I remove iPhoto from my computer?

    Have you tried this?
    Open the Image Capture app
    Select your SD Card
    Click the little widget in the bottom right corner of the window
    Select the program to launch, or "No application"
    it worked for me

  • How can I prevent Firefox from closing when it crashes?

    So, I'm using a Windows 8 computer, & when it crashes, it closes altogether & it's really annoying having to reload my session, but when I was using a Windows 7 computer, Firefox hardly ever closed altogether when it crashed- all it did was freeze. Is there some way to only have it freeze instead of closing altogether? I hope you understand what I'm saying. Thanks.

    If only, if only! :)
    No, there isn't a way you can choose what Firefox does when it crashes. It crashes for a reason. But we can see what's causing those crashes.
    Can you give me your crash reports?
    #Enter ''about:crashes'' in the Firefox address bar and press Enter. A Submitted Crash Reports list will appear, similar to the one shown below.
    #Copy the '''5''' most recent Report IDs that start with '''bp-''' and paste them into your response here.
    Your System Details looks very light/empty. Can you start by giving us the troubleshooting information from the Firefox installation that's having problems. This is an essential step in troubleshooting.<br>
    *Click the Firefox button at the top left, then click the ''Help'' menu and select ''Troubleshooting Information'' from the sub-menu. If you don't have a Firefox button, click the Help menu at the top and select ''Troubleshooting Information'' from the menu.
    Now, a new tab containing your troubleshooting information should open.
    *At the top of the page, you should see a button that says "Copy text to clipboard". Click it.
    *Now, go back to your forum post and click inside the reply box. Press Ctrl+V to paste all the information you copied into the forum post.

  • How can I prevent iTunes from opening when Firefox is open, when the computer is not used for a few minutes?

    iTunes opens on my screen if Firefox is on, with page minimised or with current page open, if I do not use the machine for a few minutes. I can't find anything to turn this off.

    When you first insert a CD your Mac comes up with a box saying
    "You have inserted a CD" (duuh, Apple...)
    Then you choose from a pop-up menu that offers "Open in Finder", "Open in iTunes", etc
    At some point you (or someone) has chosen "Open in iTunes" then checked the little box that says "Make this the default from now on".
    If you go into System Prefs (as already mentioned) you have a choice to reset what you want to do with a blank CD.

  • How can I prevent Photoshop from quitting when trying to use Photomerge?

    When trying to use photomerge, Photoshop (CS 5.5 version) quits immediately. How can I fix it?

    I seem to remember that there have been several threads on issues with Photomerge, have you done a Forum search?
    And you may want to provide more information, OS, reports, …
    Boilerplate-text:
    Are Photoshop and OS fully updated and have you performed the usual trouble-shooting routines (trashing prefs by keeping command-alt-shift/ctrl-alt-shift pressed while starting Photoshop after making sure all customized presets like Actions, Patterns, Brushes etc. have been saved and making a note of the Preferences you’ve changed, 3rd party plug-ins deactivation, system maintenance, cleaning caches, font validation, etc.)?

  • How can i prevent checkboxes from resetting when shutting down the app?

    Hi, i'm trying to make an app for a coin database.
    Below a photo of the coin i put a checkbox or a switch to indicate what i have.
    When closing and reopening the app, all the checkboxes or switches are unchecked.
    Is there any way to let the app remember what was checked or unchecked.
    Thnx.

    Are you using a gallery to display your coins?  If so, this is what you'll need to do:
    Part 1
    1. Use a Collect function when the Checkbox is checked (and a RemoveIf function when the checkbox is unchecked.)
    2. SaveData function to save the data.  This can be done when the checkbox is checked.  Use a semi-colon to string functions together.
    Example (in the OnChecked):
    Collect (myCoins, {ID: CountRows(myCoins) +1, CoinName: txtMyCoin!Text, IsChecked: "true"}); SaveData(myCoins, "MyCoins")
    --> This code may not be 100% correct as I'm not on a computer with Siena while I'm writing this but it should be enough to get you started I hope.
    Part 2
    1. Use the LoadData function when you need the information to be loaded - usually in the OnVisible of a page.
    2. In the Default of the checkbox (in your Gallery) add this code: If(ThisItem!IsChecked = "true", true)
    --> Again, I'm not in front of my computer with Siena so I may be off here.  I'll edit this post if I'm way off.
    I hope this gives you a good start.  I can provide better examples if this isn't working for you.
    FYI - The code will look different if you're not using a gallery.  Hopefully you are as it sounds like the way to go in what you have in your example.
    Thor

  • How do I stop Safari from refreshing?

    How can I stop it from refreshing when:
    1) When I press the "back" button, I want it to load what it has previously saved, not to reload the whole page again... this takes much longer and takes up bandwidth
    2) When I open the page again after a while: say I have 4-5 pages of different web pages, and when I open one of the pages that I haven't opened for a few minutes it'll load again when I try to go to that page... again, this takes much longer and takes up bandwidth
    So how can I tell Safari just to show me what it has previously loaded and tell it to stop refreshing everything? It's quite annoying.
    Thanks in advance!

    I've submitted feedback on this, and posted in another thread. This reloading issue is a real problem for using mobile boarding passes on airlines which support them, such as Continental and American. You may be able to present your boarding pass and scannable bar code at the bag check or security, but by the time you get to the gate, Safari will decide to reload the airlines' web page with your pass. Of course, this confuses the airlines' servers, and it takes several attempts (and minutes) to recall the correct page.
    This unrequested reload is a real issue - it breaks the utility of Safari and the iPhone for this application, and many other web sites which have issues with a reload.

  • Stop safari from refreshing every page i go back to

    Is there a way to prevent safari from refreshing every page i go back to in my browsing history?  what is the point of having a cache if safari is going to refresh every page anyway?
    i dont mean dated stuff like 2 weeks ago, i mean every page.
    i swipe and have to wait while safari refreshes, then swipe back again, wait for the refresh and repeat this.  if i quickly swipe back 4 pages, the 4th page back will appear for a second, then the 1st page re-appears cos it is fully refreshed.
    i thought it was just on Facebook that this happened on, but it is on most pages including google searches and this forum.
    very annoying behaviour.

    I am part of a web marketing company and we discovered a very heavy aggravation on top of all the above described annoyances of the refreshing process of safari on iPhone and iPad.
    If the page in refreshing process it was after a direct click on a google "pay per click add", then safari it would re-emulate the click on the google add as well, who will charge the customer for what it looks like a legitimate click !!!!!
    Now my customer put me in charge to collect all the company server's logs and analyse them through one by one ... (millions…),
    once sufficient data will be available we will start a suing process against apple and google.
    Apple, to allow such automatic unconditioned refreshing generating false "pay per click", and Google for charging the customer for illegal clicks. Keep in mind that we receive from 500 to 600 clicks per day at a CPC min £1.90 to max £6.80 depends from competitors biddings, the highest percentage of clicks its about CPC £3.10, making the company spending easily £3,000 per day.
    in the last 7 days we already discovered that about 10% of the clicks are repetitive from iPhone and iPad refreshing their safari cache, making spend the company about £ 2,000 per week in false clicks. we are also trying to discover when was this process generally started,  ie if its been going on for a year, we are talking of some good (£2000 * 52) £100,000 plus our work to investigate.
    I am a big fan of iPhone, and I hope some apple technician will read this message and take action ASAP, because in the next 3-4 weeks, once our investigation its done, all the info and server logs will be publicised on the web … with unfortunate financial consequences …

  • I am sharing a apple id acount with my family but when i synced my phone to the computer it erased all of my imformation and put the other phone's imformation on it. I was wondering how I can prevent this from happening?

    I am sharing a apple id acount with my family but when I synced my iphone to the computer it erased all of my imformation and put the other phone's imformation on it. I was wondering how I can prevent this from happening?

    If the ringtones are on the old device just plug it in and do a transfer of purchases then they will be on the computer to sync to the new device.

  • Probably asked and answered a million times but my laptop died and my boyfriend and i are now sharing a computer when i went to back up my contacts i ended up with all of his! Is there a way to get them off and how do i prevent this from happening again?

    probably asked and answered a million times but laptop died and my boyfriend and i are now sharing a computer when i went to back up my contacts i ended up with all of his? Is there a way to get them off without deleting each one? Also how do i prevent this from happening again? can someone direct me to some info on multiple phones on one itunes i am lost.

    Hey there 79usma79!
    I have a couple of articles for you that can help you troubleshoot the issues you are seeing with iTunes on Windows XP. The first is a general troubleshooting article, which can be found right here:
    iTunes for Windows XP: Troubleshooting unexpected quits, freezes, or launch issues
    http://support.apple.com/kb/TS1421
    This article can help you find out if there are any conflicts between your copy of Windows XP and iTunes, and can tell you what to do if there are. Before going down the troubleshooting route though, you should take a look at this article, which can help you back up your entire iTunes library to an external hard drive, so if this issue is recurring, you will be able to restore from that backup and will not have to worry about losing your playlists or music again:
    iTunes: Back up your iTunes library by copying to an external hard drive
    http://support.apple.com/kb/HT1751
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • How do I prevent itunes from moving my music from its original place ie folders in an external drive when I play music from itunes. I have all my music in artist folders and separated by MPG3/MPG4 and FLAC folder within the artist folder.

    How do I prevent itunes from moving my music from its original place ie folders in an external drive when I play music from itunes. I have all my music in artist folders and separated by MPG3/MPG4 and FLAC folders within the artist folder and itunes moves the track/s whenever i try and load selected music to my ipod/iphone. I've tried to find some sort of preference to prevent this, but no joy? What am I missing?

    Try opening iTunes preferences. Then click on advanced tab. Then uncheck "Copy files to iTunes media folder when adding to library." By default, iTunes copies music to its own media folder when you use iTunes to play the music.

Maybe you are looking for

  • BIOS Failure. Not able to restore

    Hello HP support team,  My friend's comuter's BIOS seems to be dead. When I turn it on the CapsLock light blinks for 2 times and nothing happens on my screen. I tried to remove battery and power cable for some minutes, but nothing changed. I also rem

  • BAPI to create and update scheduling agreement (type LZM) in ECC

    Hi, We have a requirement to create and update scheduling agreement of type LZM in ECC from an external system. Is there a BAPI available for this in ECC 6.0 which can be used? The integration is using PI. Regards, Srivatsan

  • How do I purchase Aperture once the Trial software is installed?

    I installed the Trial Version of Aperture 3, moved over just a few photos, liked it, moved over all of my photos and really liked it (once everything settled down). So, I now have three libraries and I'm going through the Faces part, getting all my p

  • How to pass checkbox multiple value in URL as parameter?

    Hello, I have a checkbox in two page. The checkbox is based on a LOV and user can check more than one value at a time. The return value of the checkbox is like "ID1:ID2". I want to call another page with the same checkbox item and want to pass the ch

  • Quicktime 10 and Snow Leopard

    I've just upgraded to Snow Leopard and I wanted to watch some previous keynote speeches and the latest rock and roll one, but the video is all blocky on Quicktime. When I load it up the sound is ok but the video is all blocky and the movement is jump