Putting Action menu in another region

All,
iam using IR and i want to move my Action menu block to another top region while the IR itself stays in another lower region. How do you accomplish this in Apex 4.1.1?
regards

You can do that using this:
$('#apexir_TOOLBAR').clone().appendTo('#new_search_region');
$('#apexir_REPORT #apexir_TOOLBAR').remove();
However, there are problems with displaying the IR Action Menue dialogs. They will still apear in the original region so you need to solve that.
Denes Kubicek
http://deneskubicek.blogspot.com/
http://www.apress.com/9781430235125
https://apex.oracle.com/pls/apex/f?p=31517:1
http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494

Similar Messages

  • Hide Region action menu

    Hi,
    I created a region out of taskflow. When I make show header, it shows both minimize icon on the left top and action menu at the right top(control flow case). I need to display only minimize icon and hide action menu at the right top corner. How to hide the action menu from region?
    Thanks,
    $N

    Hi,
    I don't see this in ADF region Which release of JDeveloper do you have ?
    Frank

  • How to cell register the date/time when you put a value in another cell

    Hello guys!
    How do I get a cell (eg A2) tell the date and time when I put a value in another cell (eg A1) in Numbers?
    For example, I want to register a cell to read my electricity meter.
    I write in cell A1: 45809. When placing this value in A1, I want to appear (on A2) the date and time when I did that record automatically. Is it possible?
    I hope you understood the question!
    Thank you in advance to those who try to help.

    There is not automatic time stamping of on entry of a time.  One suggestion I've seen has a cell that has the current date and time.  Everytime you cahnge any cell that cell will update.  You can then copy that cell and paste the value into your date/time cell adjacent to the meter reading:
    Create a new, plain table:
    Now in cell A1 enter the formula "=now()"  short hand for this is:
    A1=now()
    now resize the table so it is a table that is 1 cell by 1 cell by selecting any cell, then dragging the table size control in the bottom right corrner towards cell A1:
    It should look like this when you have completed this task:
    Now create another new, plain table and enter "Date" for cell A1, and "Meter Reading" for B1:
    Now you can enter a meter reading (I entered "45671").  Now select the CELL that has current date and time from the first table at the very top, and copy:
    Now select the cell in the date column where you want to put the current date and paste values by using the menu item "Edit > Paste Value":

  • "Type mismatch" error in IE7/8 when using custom Actions Menu Image

    Hi all,
    in APEX 4.2: when using a custom image in the "Actions Menu Image" attribute in an interactive report, I get a "Type mismatch" error in IE7/8 when refreshing the report through PPR (filtering, sorting, paginating etc.). When I leave the "Actions Menu Image" field empty, everything works fine. The error doesn't seem to happen in IE9 (unless using compatibility mode), or in any non-IE browser.
    I've been able to reproduce the issue in an application on apex.oracle.com:
    http://apex.oracle.com/pls/apex/f?p=69347:1
    Some debugging seems to indicate that the following line in widget.interactiveReport.js is the culprit:
    lTemp.parentNode.replaceChild($x('apexir_WORKSHEET'), lTemp);Does anybody know if this is a known issue, or if there is some workaround?
    Thanks,
    Tobias

    Hi,
    Great solution Paul! It cost me a while before I found out the Action Menu Image was causing my interactive reports to stop refreshing in IE10 and not other browsers. Your solution works great, I've implemented it with a few minor adjustments:
    - Put the css in report template (for some reason it didn't work in our own application stylesheet)
    - replace  'url("/c/action_dropdown.gif")' with 'url("&APP_IMAGE_PREFIX./<path_to_image>")'
    - place one dynamic action on page 0: after refresh of '#apexir_DATA_PANEL' , set event scope to "Dynamic".
    - Let the Dynamic action also fire on page load.
    - To make sure the dynamic action only works for pages with an interactive report add condition of type 'Exists' with expression:
    select 1
    from   dual
    where  :APP_PAGE_ID in (select page_id
                                            from   apex_application_page_ir
                                            where  application_id = :APP_ID
    Best regards,
    Vincent Deelen

  • Apply request values from a region on an event from another region

    Hi,
    I am quite new to ADF and that's my first question/post here (and as a matter of fact pretty much anywhere),
    so i hope i manage to make my problem clear enough.
    First i am using ADF Faces + ADF BC using JDeveloper 11.1.2.1.0 with the integrated WebLogic Server
    Now the what is the case:
    I have a page with two af:regions in it.
    The first one is basically a single selection table.
    The second one is a to put is simply an edit form for the selected row of the first table.
    I don't use the contextual events mechanism ( i have spent some week or more playing around with it awhile ago, but from that exprience i don't recollect any particular thing that might solve my problem) so what i do is pass as parameter to the first(table) region a "delegate" that would listen/handle selection events and in the backing bean of the table i have the selection listener that fires the events/calls the delegate's handleEvent(String eventType,Object data) method so that the main page knows and refreshes the second/edit form region
    with the newly selected ID of the entity.
    My problem is that if i had entered data in the form in the second region it is lost after selection
    has been made in the first one.
    I see (in the http request content of the selection event, or in the requestMap), that all that was in the html page, including the second region is transmitted to the server - so are the newly entered values. However the jsf components that are a part of the second region are not applied with their new values, nor their model is updated in the next jsf phase.
    Now I suspect that has something to do with the (Adf)RichRegion being a EventRoot or something.
    I tried putting partialTrigger to the second region (though i currently and for various reasons call the AdfFacesContext.addPartialTarget programmatically at about one million places in the java code after the selection event)
    I even tried hacking the javascript AdfRichRegion object, so that it would always return false if asked isEventRoot. :) that's how desperate i was
    The only solution i have so far is:
    First to make clear. When i say refreshing the second region i don't mean calling RichRegion.refresh(), but rather RichRegion.queueActionEventInRegion(....., "refresh",PhaseId.ANY_PHASE) which in the second's region taskflow is just a method call, that sets the right current row of the iterator and then loops back to the same (one and only view in this taskflow - the edit form) and adds some parialTargets to the AdfFacesContext, so we see the new data
    then in that methodCall (which i think happens in the INVOKE_APPLICATION phase) i add those few lines to make sure the values are applied to the jsf components sub-tree of interest:
    RichPanelGroupLayout fl = getFl();//that's a binding of the UIComponent, that holds all the inputTexts i care about
    fl.processDecodes(FacesContext.getCurrentInstance());
    fl.processValidators(FacesContext.getCurrentInstance());
    And when i say make sure that the values are applied... i actually mean - get on my knees and pray because the whole thing looks too hacky already, but so far it works.
    But now i have to make sure the validation has been ok (otherwise i get a funny effect of seeing the red popups at the invalid text inputs just for a second and then my region is refreshed to the new entity or i get an JBO exception depending of whether i call the next lines that follow without the if(..){processUpdates}
    How do i check this:
    System.out.println(FacesContext.getCurrentInstance().isValidationFailed());
    //The above line would print false nomatter what happenned so i decided to use this "something":
    boolean validationFailed = FacesContext.getCurrentInstance().getMessageList().size()>0;
    if(validationFailed){
    //dont update the iterator's current row and return to the edit form page
    return "fail";
    }else{                    
    fl.processUpdates(FacesContext.getCurrentInstance());
    //update the current row and return to the edit form page
    It took me days to come up with this...i would call it hack...And a day or two more to adapt the rest of the page's logic with the whole design changes i had to make but i still believe there must be some better solution that i am missing because for a number of reasons i don't feel right eith this one, which, while implemented and working (i hope) makes the whole real case a lot more complex than it used to be (and still feels like a hack),
    just for the simple reason that I want to get some updated values back in the model.
    Just as an example of a design change i had to make i give you the afformentioned methodCall i had to add, because the processUpdate would not work if not called with the right adf bindings context... first i tried calling them from a custom PhaseListener i have but at that moment nobody knows what #{bindings.MyEntityId.inputValue} is.
    Thanks and Greeting
    trout
    Edited by: trout1234 on Aug 2, 2012 10:47 AM
    Edited by: trout1234 on Aug 2, 2012 10:57 AM

    Oh yes... and i have also noticed that if the action is triggered from a component(e.g. clicking on a commandLink) that is a part of the main page
    the values are updated in all regions (i think so :) ) ... so i even tried a client listener in the first region that calls javascript function that queues a custom event with a source component from the main page, but yet the selection event is propagated to the server even with the event.cancel() and evt.stopBubbling()
    and i could not make my custom event force the apply request values... but here i might have done somthing wrong i dont know it is a mess anyway... sure this one sound more of a hack than my current option....by my criteria at least

  • It says I can drag Pages documents from iMac to iCloud. But nothing shows up. Using latest with all turned on. How do I get Pages up to iCloud? The little wheel like action menu does not appear.

    It says I can drag Pages documents from iMac to iCloud. But nothing shows up.
    Using latest with all turned on. How do I get Pages up to iCloud? The little wheel like action menu does not appear.

    yes is tehre another way
    the directions do not explain anything other than drag
    or use the little action wheel menu

  • Action menu background is clear.

    Hello,
    Someone using one of my applications sent a screenshot of the Actions menu of a Interactive Report. The background of the menu that drops down is clear (no background color) so you can see the report through it. They are using IE.
    Has anyone seen this or have any suggestions on how to make the background white? I can't replicate it in FF or IE.
    The theme is Builder Blue.
    thanks,
    Matt

    Previously reported: +{thread:id=1095764}+.
    No resolution mentioned yet, but switching to another theme may be a possible workaround.

  • My harddrive dyed. I was able to copy my music in safe mode. When I went to put the music on another computer I lost most of my music user rights. How do I regain those rights in order to play my music I worked so hard to optain over the years?

    My hard drive dyed. I was able to copy my music in safe mode. When I went to put the music on another computer I lost most of my music user rights. How do I regain those rights in order to play my music I worked so hard to optain over the years?

    iTunes menu Store > Authorize computer.

  • Interactive Reports - Actions Menu - Download option

    The interactive report Actions Menu has many wonderful options. The action that my users will use the most is the Download. Is there any way to create a button or text link for the download, similar to what is shown in the classic report? The users want the Download button to show up on the bottom left side of the IR. I appreciate all comments and hope it will be a simple solution. Many thanks.

    Hi,
    Yes, it is easy like this
    Create button in region position bottom left
    specify URL target: f?p=&APP_ID.:&APP_PAGE_ID.:CSV::::
    for CSV
    and change correspondingly for PDF and so on
    Check this page bottom: http://apex.oracle.com/pls/apex/f?p=20351:1
    if you are not sure
    That it is.
    Regards,
    Oleg

  • Need to locate the Finder's cog wheel (action menu).  It's not there! Would someone please help me?  Trying to uninstall MacKeeper.  Thanks.

    Need to find the Finder's cog wheel (action menu).  It's not there!   Would someone please help me?  Trying to uninstall MacKeeper.  Thanks.

    anne296 wrote:
    Need to find the Finder's cog wheel (action menu).  It's not there!   Would someone please help me?  Trying to uninstall MacKeeper.  Thanks.
    The action menu can be restored by, in the Finder, selecting under View menu "Customize Toolbar ...". There you will see options to put the action menu (wheel) back on your toolbar.

  • How to link one menu to another.

    Hey guys,
    I am creating a user input form for car types and car parts. I want to link one menu to another. I.e. the first menu will be make with a list of car makes, and if the user chooses "Ford" then the next menu will load items from a table "Ford" with the Ford models in it. I have the tables created in a database, one tabel is make with 50 different makes, and then i have 50 other tables for each make with the model types in it.
    Sorry if this is confusing please ask me if you need any more info.
    Thanks in advance

    supersham101 wrote:
     I want to link one menu to another. I.e. the first menu will be make with a list of car makes, and if the user chooses "Ford" then the next menu will load items from a table "Ford" with the Ford models in it.
    What you are looking for is a dependent drop-down menu. To get the values for the second menu, you need to send another request to the server, either by submitting the form again, or by using an Ajax request to populate the dependent drop-down. I don't know of any online tutorials for doing this, but you should be able to find something by doing a Google search. I know that "jQuery in Action, Second Edition" by Bear Bibeault and Yehuda Katz (published by Manning) describes in considerable detail how to do this.

  • PE11 Rip from DVD- putting a menu on- burning that to DVD ruins quality

    First, I've read some things here and there, but can't find the exact same scenarios in other posts, although I'm sure this is a fairly common problem (SIAP):
    Here is a summary of the issue:
    1) Our guy produced a video for our organization and gave me a DVD-R of the 11 minute project. I imported this into PE11 and on the timeline it says .VOB. Now on the desktop, the 481 mb VTS_01_1 file properties state that it is 720x480, 29 fps... although I find it strange that the clip as imported into PE11 in properties in the project assets window says it's 23.976 frame rate. Making things more confusing (don't even know if any of this matters) is that in an instance of Share->Export to Computer, the "source" says the video is 1920x1080, 29.97 fps. Don't know if any of this matters...
    2) Anyways, the reason I ripped it is for the sole purpose of creating a menu on the DVD. So I picked a "HD" template, imported my own JPEG on to it, then attempted as best I could to erase all the buttons except for "Play Movie." AGain, not sure if the Menu functionality has anything to do with the issue, but I figured I'd mention it.
    3) I've tried several times burning the video with both DVD-R and +R using both NTSC Dolby and Widescreen Dolby to burn to DVD.
    The resulting DVD has a degraded, fuzzy image and the black frame lines at bottom and top seem to bounce and jitter.
    The image on the original DVD is clearly HD and looks great, without any bouncing, jittering, etc. Also, the DVD app i used to watch the original on my computer is the same as I used to watch my own burned DVD... So PE11 has clearly degraded the image, something is going on in the export.
    Another thing worth mentioning is that as I look at the video footage in PE11 on full screen, I can see that even in PE11, the video quality is not the same as the original DVD and there are obvious artifacts and just nonsense in the picture... Not necessarily as bad as the burn, but similar.
    I've done a little reading on these forums about .VOB files... I don't fully understand them. Is it that the image is messed up from the beginning with an import from DVD? IS there a way to do what I want (take hiqual video from a DVD, put a menu on it, then burn it back onto DVD?) with PE11? Or is the only way to make a burn from the original source file before it was burned the first place?
    computer specs:
    lenovo P500
    Intel Core i7 3520M 2.90 gHz
    8gb RAM
    windows 8 64-bit

    LorcanPMiller
    Please get a MediaInfo readout of your VOB at the onset to determine what you have, especially standard or widescreen.
    http://mediainfo.sourceforge.net/en
    Special Interest: Frame size, Frame rate, Display 4:3 or 16:9, Scan Type and Scan Order for which I am expecting Interlaced and Lower Field First.
    Here is my take on your situation.
    1. The Canon 6D can capture 1080p video (1920 x 1080 16:9 at 29.97 or 30 frames per second), but from what you wrote somewhere along the line someone put that through a video "authoring" program to convert it into DVD-VIDEO format on a DVD disc (720 x 480). At this point, we need to know standard or widescreen. Both standard and widescreen will be 720 x 480, but the widescreen will have a 16:9 flag included to stretch the video for display after encoding.
    Question:
    a. What is on that DVD disc....just a file name VTS_01_1 (file size 481 MB) or two folders named OpenDVD and VIDEO_TS? If you have a file, for Premiere Elements 11, you would use Add Media/Files and Folders to get the file in Project Assets. If you have the DVD disc in the DVD burner tray, you would use Add Media/DVD Camera or Computer Drive to rip the VOB and get the VOB into the project.
    b.Your project is going to get messed up and confusing, if you let the program set the project preset for you. You will most likely end up with the default NTSC AVCHD Full HD1080i30 which is inappropriate for your project. So, before thinking or acting on Get Media....open a new project, go to File Menu/New/Project and set the project preset in the New Project dialog for NTSC DV Standard or NTSC DV Widescreen depending on what you find beforehand about the properties of your VOB MediaInfo Then use Add Media/and the appropriate choice based on what I wrote above about VOB already ripped vs DVD-VIDEO ripping.
    c. When you have your VOB on the TImeline with the appropriate project setting, right click the file in Project Assets and verify Premiere Elements 11's interpretation of the file frame rate and other to determine if it agrees with the MediaInfo readout. It would be very unusual if there was a differnce, but...
    d. Whether you have a NTSC or PAL project, all the SD DVD Templates have a frame size of 720 x 576 (PAL sizing). The ones tagged HD have a 1440 x 1080 frame size. Right now I would advise you to stay with the SD ones, but not be afraid to experience with a HD choice if it appealing and see what happening during encoding.
    e. In all this, you did not say what the duration is of this 481 MB VOB file. The standard DVD disc is spec'd at 4.7 GB/120 min. That 4.7 GB in reality is 4.3 GB. You will frequently see the recommendation "for best results, do not exceed 90 minutes on this standard type disc". When you have your DVD disc in the DVD burner tray and are in the burn dialog of Publish+Share/Disc/DVD make sure to check the Quality Area of the burn dialog for the Space Required and Bitrate reading (8.00 Mbps is the max reading).
    Based on what you wrote, I suspect that most of your problems were related to incorrect project settings. By the way, if you want to get rid of a menu button text, most of the time double click the text to bring up the Change Text dialog, highlight the text there, hit the delete key of the computer, then hit the space bar or enter key.
    If you are replacing the menu's audio, max 30 sec with looping. If you use motion buttons in the menu, max 4.9 seconds. After you get the details of the project setup OK, we can focus in more on the menus...number of Timeline markers etc, and customization of the menus from within the program.
    Lots of details. The answers and successes will be in the details. All the contributors here have given you a lot of ideas for exploration and experimentation.
    Please do not hesitate to ask if you need clarification on anything that I have written.
    Looking forward to learning of your progress.
    Thanks.
    ATR

  • How do i put creative cloud on another computer

    How do I put creative cloud on another computer

    Davidm29914240 for information on how install the Adobe Creative applications included with your membership please see Install and update apps - https://helpx.adobe.com/creative-cloud/help/install-apps.html.

  • I use MacbookPro late 2011 with Maverick, when i put iPhone 5 or another cellphone askew on left corner of touch pad and slide it to keyboard, the macbook will sleep, i don't know what the problem is, it occur on another macbook pro late 2011

    I use MacbookPro late 2011 with Maverick, when i put iPhone 5 or another cellphone askew on left corner of touch pad and slide it to keyboard, the macbook will sleep, i don't know what the problem is, it occur on another macbook pro late 2011

    It may well be a driver issue but considering the loading: Xorg trying to load different drivers is somewhat normal. @cafe you can see that these are autoconfigured by X above the loading in the log:
    Jul 20 19:48:24 arch gdm-Xorg-:0[216]: (==) Matched intel as autoconfigured driver 0
    Jul 20 19:48:24 arch gdm-Xorg-:0[216]: (==) Matched intel as autoconfigured driver 1
    Jul 20 19:48:24 arch gdm-Xorg-:0[216]: (==) Matched modesetting as autoconfigured driver 2
    Jul 20 19:48:24 arch gdm-Xorg-:0[216]: (==) Matched fbdev as autoconfigured driver 3
    Jul 20 19:48:24 arch gdm-Xorg-:0[216]: (==) Matched vesa as autoconfigured driver 4
    As long as one of the drivers gets loaded, which it apparently does the failing of the others is fine.
    Was there an update maybe ?

  • Interactive Report - Add a 'custom' Action Menu Item

    Hi,
    I'm wondering if it is possible to add 'custom' Action menu items to an interactive report?
    I have a situation where I want to use all the richness that an interactive report gives with it's out of the box functionality, then if a download is selected I need to be able to set a 'lock' on the currently selected records set before the records are downloaded.
    I've had a good look around the forum and various other sites and I can't seem to find anything in this area. The nearest I can find is on the OBD tutorials the ability to add a 'Reset' button.
    I know how to create custom download functionality, to which I could add the required record locking functionality and in turn link to a button, but what I don't know how to do is pull out the selection variables from the Interactive Report in order to construct my select query.
    Maybe I'm barking up the wrong tree and there's a better way if so any suggestions would be most welcome.
    Many thanks in advance Peter..
    Edited by: Pete on Jun 30, 2011 4:16 PM
    Edited by: Pete on Jun 30, 2011 4:24 PM
    Edited by: Pete on Jun 30, 2011 4:31 PM

    Hi,
    For your issue, in SharePoint Designer, Click Custom Action->View Ribbon->Create Custom Action.
    Then the extra form will show up in the Ribbon.
    Refer to the following link:
    http://www.abelsolutions.com/totm/creating-a-custom-action-in-2-steps-with-sharepoint-designer/
    Best Regards,
    Lisa Chen
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]

Maybe you are looking for

  • How do I get my Hp scanner to work with Mavericks?

    I am running 10.9.4 and my wife uninstalled the software to our HP Scanjet 4370. I'm not sure what to do to get the scanner to operate because HP does not have a driver or software for Mavericks yet. Can anyone help?

  • Can't open file 2

    I have a finished project in indesign. It crashed and now it won't open and I'm freaking out. I'm new to Mac, and can't seem to either locate or open the autosave file.  The error message reads "can't open file, may not support format missing plug in

  • HP Pro Book 4540s SATA III Support

    Does 4540s support SATA 3 ? optional i mean and is there any models in HP that support SATA 3 ?

  • Best way to transfer a List Object into a view object?

    Hi Guys and Gals, I'm working with some 3rd party code. This code queries a 3rd party database and returns the data into a List like so:         PlatformSessionContext context = webutils.getPlatformContext(accesstoken,accessstokensecret,realmID,dataS

  • Scheduling BOXI 3 Deski reports through Command Line

    Can we schedule BO XI 3 Deski reports through Command Line.? How can we do this? Need help Plzzzzzzz!!!!!