Steve muench's refreshing browser page.. can it work with commandbutton?

http://radio.weblogs.com/0118231/stories/2005/06/16/whyIsntRefreshingTheBrowserPageEnoughToRefreshTheDataDisplayed.html
How does that work with the adf commandButton and not an html button? Shouldn't we just be using ADF controls?
also, there is a bug in your code
public void onRefreshData(DataActionContext ctx) {
actionContext.getBindingContainer().findIteratorBinding("YourIter").getRowSetIterator();
actionContext.getBindingContainer().findIteratorBinding("YourIter").executeQuery();
actionContext should be ctx or viceversa
Let me know if it is possible to use ADF command buttons to accomplish this..
also, i am not using a data action class but just using the actions in the page def files. Trying to use the ADF as much as possible.
TIA

User,
DataAction is used with [url http://www.oracle.com/webapps/online-help/jdeveloper/10.1.3/state/content/navId.4/navSetId._/vtTopicFile.adf_javadocs|oracle|adf|controller|struts|actions|DataAction~html/]Struts, not JSF.
In JSF, you can add an "Execute" binding for your iterator to the page definition and then bind that to your command button.
John

Similar Messages

  • Move focus between elements of browser page doesn't work with JVM 1.6.x

    Hi,
    why JVM 1.6 doesn't support accessibility?
    with JVM 1.5_10 or above it's possible to move from elements of IE browser page with tab and enter and exit from applet
    with JVM 1.6 or using plugin 1.6 this is not more possible.
    with plugin 1.6 and JVM 1.5 applet can gains focus but it doesn't release it
    with JVM 1.6 applet doesn't gain focus and all keyevents are intercepted from browser.
    to make my applet and page accessible I need to move focus between elements of browser page with tab,
    and enter and exit from applet.
    Just because my users can't use mouse but only keyboard.
    Note that FireFox doesn't work at all, even if bug seems fixed https://bugzilla.mozilla.org/show_bug.cgi?id=93149
    (you can watch a recorder right sample here on: http://www.vista.it/ing_vista_0311_video_streaming_accessibile_demo.php)
    Please advise.

    Hello Carl,
    some things are so easy if some one takes place the clou. I clear all cache information in the firefox browser and all is working fine.
    Thank you very much and have a nice weekend.
    Regards
    Thorsten

  • My hard wear and soft wear crashed, did a backup on all my files.When I now open them the are all "preview"!!! How do I get my old documents back? it should be pages, and numbers, ight now I can't work with them

    My hard wear and soft wear crashed, did a backup on all my files.
    When I now open them the are all "preview"!!!
    How do I get my old documents back? it should be pages, and numbers, right now I can't work with them

    Reinstall OS X

  • Youtube not opening in Safari browser. However it works with google browser. There is a red arrow coming, with https in you tube, and the page just does not open. help required.

    youtube not opening in Safari browser. However it works with google browser. There is a red arrow coming, with https in you tube, and the page just does not open. help required.
    It seems I have done some mistake when you tube was open, and i stopped one site to delete!
    From then on it is not working.
    Any solutions?
    GV Joshi

    Hi gajanan vasant!
    I have a couple of articles for you that should help you troubleshoot your issue with Safari. First, you may want to try a reset on Safari by following the procedure listed in this article:
    Safari 5.1 (OS X Lion): Reset Safari
    http://support.apple.com/kb/PH5043
    If you are still having issues after resetting Safari, you may want to check out this article about third-party add-ons in Safari:
    Safari: Unsupported third-party add-ons may cause Safari to unexpectedly quit or have performance issues
    http://support.apple.com/kb/TS3230
    Thanks for using the Apple Support Communities!
    Regards,
    Braden

  • I need help to activate my iphone 5s. am stuck on the activation page. can someone help with with the icloud activation bypass? how do i even go about it?

    i need help to activate my iphone 5s. am stuck on the activation page. can someone help with with the icloud activation bypass? how do i even go about it?

    You must put in the required information. If you do not have it, you must get it from the original owner of the phone. If you have forgotten your iCloud password, you can reset it at:
    https://iforgot.apple.com/password/verify/appleid
    There is no such thing as an activation "bypass". Activation Lock is a security feature. It wouldn't be that secure is you could bypass it, wouldn't it?

  • Can TS work with sql server compact or express?

    I'm don't have much experience with the underpinning of database systems.  I know conceptually how they work and can hack my way through sql queries.  Is there something fundamentally different about a Sql Server Compact itnstall versus Sql Server versus Sql Server Express?  Can TS work with any of them with a proper connection string?
    My problem is at our local site a previous employee set us up on Sql Server and wrote a web app (.asp) to do the query for presentation on a web page.  At an offsite location they can't install Sql Server and I'm trying to figure out the best path for them to be able to use the same .asp tool we have.  My gut feeling is the .asp tool is probably set up such that it wouldn't take much to make it work with MySql but because I don't have the luxury of time I'm hoping someone can point me in what they think might be the easiest direction (whether that is sql compact if possible or MySql for them).

    Hi,
    TestStand works with SQL server express. (not sure about SQL server compact).
    Ravi

  • Does T400 can only work with up to 4GB RAM?

    Does T400 can only work with up to 4GB RAM?
    Here (http://support.lenovo.com/en_NO/product-and-parts/detail.page?DocID=PD005598), it says 512 MB, 1 GB, 2GB, or 4GB memory.
    So if more than 4GB RAM, will it do harm to the hardware of T400? Or just only 4GB will be used, and no any harm?

    That doc was probably written when there were not 4GB DIMMs available, or at least being commonly used. T400 will work with any combination of 1GB, 2GB and 4GB DIMMs, up to 8GB total. I tried single 8GB DIMM and it didn't work

  • Multi-page units of work with automatic state management

    Hi Jhs team:
    When my applications need to support an end-user task requiring data entry on many different web pages to complete,
    how to building multi-page units of work with automatic state management ? please give some instruction .

    Ting Rung,
    You can do this in two ways:
    - use a Struts form bean to collect all the values over the requests
    - submit the changes of each request to bc4j, but do not post and commit the changes to the database.
    The latter is easiest. For this to work, you must set the doCommit property of all your save actions in the stuts-condig to false, except for the last save action in the chain of requests.
    In addition, in your application module class, you need to overwrite method postChanges as follows:
    * DO NOT post the changes to the database
    public void postChanges() throws Exception
    // do not post here
    // posting will happen when the commitChanges
    // method on the handler is invoked
    Steven Davelaar,
    Jheadstart Team.

  • Sharepoint list dataheet view error "Cannot connect to the server at this time. You can continue working with this list, but some data may not be available"

    I have a List which is having around 14000 items in it.while opening that list in datasheet view it is giving error .
    Below is a summary of the issue:
    After selecting datasheet view beow error occurs:
        "Cannot connect to the server at this time.  You can continue working with this list, but some data may not be available."
        "Unable to retrieve all data."
        The item counts displays say 100 out of 14000 items.
    Exporting List to excel is giving only 2000 records out of 14000 records.
    Other Observations   -  
    This is happening to only one list on the site .There are other lists in the site whose no. of records is equal to 8000 to 9000.They are working absolutely fine without any error.
    Also, If I am saving this list as a template and creating another list with it ,then it is working absolutely fine with 14000 records,so the issue does not seem to be related with no. of records as the template list is working fine.
    I have checked the Alternate access mapping setting ,its fine.
    It should not be related to lookup,datefield or any other column as the list created from it template is working fine with all these columns.
    I checked below links also ,but doesn't seem to work in my case.
    http://social.technet.microsoft.com/forums/en-US/sharepointadminprevious/thread/974b9168-f548-409b-a7f9-a79b9fdd4c50/
    http://social.technet.microsoft.com/Forums/en-US/smallbusinessserver/thread/87077dd8-a329-48e8-b42d-d0a8bf87b082
    http://social.msdn.microsoft.com/Forums/en-US/sharepointgeneral/thread/dc757598-f670-4229-9f8a-07656346b9b0

    I have spent two days to resolve this issue. Microsoft has released two KBs with reference to this issue...but are not appearing in search results at the top.
    I am sharing my finding.
    1. First install the
    KB2552989 (Hopefully you might have already installed it. The KB detetcts it and informs the user.)
    2. Then update registry by adding new key for data fetch timeout as mentioned inKB2553007
    These two steps resolved the issue in our environment. Hope it might help others as well.
    Pradip T. ------------- MCTS(SharePoint 2010/Web)|MCPD(Web Development) https://www.mcpvirtualbusinesscard.com/VBCServer/paddytakate/profile

  • A few of my pages don't work with Firefox nor Chrome. How do I fix this?

    I created my website from scratch (enjoyaquatics.com) but unfortunately a few of my pages don't work with Firefox nor Chrome. How do I fix this?
    Everything looks and works GREAT on Safari but not Firefox, Chrome, nor Internet Explorer.

    The pages look fine in FF and Chrome on my Mac. Didn't check with Win XP.
    If you use MSIE on a Mac, know that it became obsolete in 2003.
    I noticed what I call wobbly text on your pages. Here's the solution :
         iWeb : Prevent wobbly text in textboxes

  • SGD4.6 can't work with Java update7.51

    SGD4.6 can't work with Java latest version update 7.51. The webtop keeps showing "loading", is there any patch for this issue?
    When Java released update 7.21, it also can't work with SGD4.6, then Oracle fixed it by updating a patch, so how about this problem?

    Have a look at this Thread:
    https://community.oracle.com/thread/2614978

  • How can I work with big iMovie 6 file?

    I am trying to make a one 70 minute movie with iMovie 6 but am having great difficulties because the file has reached 78 gig and is now unworkable because it is just too slow to even play. Even cutting it in half does not solve the problem. Each half will play but I can't work with them in the timeline. I need to add more audio files and music. Any suggestions?

    I suspect most slowdowns occur because of complex audio, not the size of the project. It sometimes helps to export the audio to an AIFF file, then re-import that file back into the project and place it in its own audio track. When you disable the audio of the other tracks, playback is improved.
    That makes it harder to edit a half-finished project, however. It's a technique best reserved for almost-finished projects.
    You could export the timeline to the camera, then re-import it to a new project. That will both make the project smaller and "flatten" its audio and video. Most clips will return as the clips they are now.
    70 minutes of video is ordinarily about 15GB, so something has increased the size substantially. (That's not normally a problem you have to worry about; the size of the project itself is probably not the problem.)
    Karl

  • Can't work with the Query after I save a 3.5 Query in 7.0 Query Designer

    Hello,
    my Problem is, I open a 3.5 Query in a 7.0 Query Designer. Then I save as another name. When i Open the Query
    i can't change things... WHY ? A Standart Transport is OK in RSA1, Transport, BexTransport. all ok..
    can't work with the Query after I save a 3.5 Query in 7.0 Query Designer
    Best Regadrs

    Hi,
    I cant click on it. It is grey..
    I open the 3.x Query in a 7.0 Query Designer and save as another name.. Then I try to open it with the 7.0 tool. The Query is displayed. But I cant change something...
    thnx

  • Mistakenly opened all the folders in my library of music and the Finder stopped working. Now every time I restart the mac, all folders are reopened and can not work with the finder and tried killall-KILL Finder and nothing they reappear

    mistakenly opened all the folders in my library of music and the Finder stopped working.
    Now every time I restart the mac, all folders are reopened and can not work with the finder and tried killall-KILL Finder and nothing will reappear

    mistakenly opened all the folders in my library of music and the Finder stopped working.
    Now every time I restart the mac, all folders are reopened and can not work with the finder and tried killall-KILL Finder and nothing will reappear

  • Ear Sir: Yesterday on 18.09.2014 evening, I wanted to install IOS 8.0 according to your instructions iPhone 5S.during installation Stopped working and was closd, I can not work with him. Ibought it in the United States Apple Store Fifth 40venue 767 N

    Dear Sir: Yesterday on 18.09.2014 evening, I wanted to install
    IOS 8.0 according to your instructions iPhone 5S.during installation
    Stopped working and was closd, I can not work with him. Ibought it in
    the United States
    Apple Store Fifth 40venue 767 New York NY1053
    iPhone 5s Spase Gray 32 gb verizon.
    Part Number: ME344ll / A.
    Serial number: DN*******NjM.
    Model A1533. I would like to request a new password for opening the
    iPhone.  Passwod..... Thank you very much,
    Im not difficult for you to request a quick answer.Israel.
    <Personal Information Edited By Host>

    We are fellow users here on these forums, you're not talking to iTunes Support nor Apple - it looks like somebody has asked the hosts to remove your personal info from your post (it's not a good idea to post any personal info on any public forum).
    What do you 'stopped working and was closed, I can not work with him' ? What exactly are you seeing on the phone's screen ?
    If it's the activation screen and you can't remember your password for your account then see if you can get it reset via http://iforgot.apple.com

Maybe you are looking for

  • Insert or delete single cells

    How do I insert or delete a single cell? For example, I want two columns of text. aligned horizontally, and, separated by a blank column. The two text lists have been created in other applications. So I copy list1, and paste it in cell C7. Then I cop

  • Zooming in on a clip

    Ok so i dont exactly know how to explain what i want, but is there some way to make the camera zoom in on a part of the film? Like when working with a clip can i have it zoom into the upper left corner of the screen? I tried different things in motio

  • LDB-Sort

    Hello All, After a long long time i am working on 3.1I and am using a LDB - BRF. In my code i am using GET BKPF Fields BUKRS BELNR GJAHR. (at this step - can i SORT the BKPF data by BUKRS BELNR? before i go to BSEG) and then use GET BSEG FIELDS X Y Z

  • Looking for Wireless sniffer tool recommendation

    Hi there, We are running WLC 5508 (ver 7.5.102) with about 100 AP.  AP ranges from Cisco 1130 series to the recent 3600 series. Recently, the WLC has been giving messages about rogue device spoofing (see example).  I figure I need to bring a tool to

  • MS-7633 Windows XP 64bit Drivers

    Hello there Anyone know wher you can get the drivers for 64bit windows xp to run with the above board, ned the drivers to intigate with the XP files so that it find the HDD on bootup. Anyone managed to install this operating system on this board. man