ShowPrintablePageBehavior is not working inside popup. Is it an ADF Bug?

Hi,
I am facing some issues with showPrintablePageBehavior component.
1. I have placed a command button with showPrintablePageBehavior inside a popup. But I am getting a blank page in print mode. But the showPrintablePageBehavior is working fine without popup.
2. I have a pivot table with a button having showPrintablePageBehavior and these components are surrounded with panelSplitter. But pivot table is not rendering in print mode.
Using JDeveloper 11.1.1.5.0 / 11.1.1.6 - adfbc
code:
<af:form id="f1">
<af:panelSplitter id="ps1">
<f:facet name="first">
<af:panelGroupLayout layout="scroll"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
id="pgl1">
<af:commandButton text="Popup" id="cb1">
<af:showPopupBehavior triggerType="action" popupId="p1"/>
</af:commandButton>
<af:commandButton text="Print" id="cb3">
<af:showPrintablePageBehavior/>
</af:commandButton>
<af:outputText value="Hai Output Text" id="outputText1"/>
<af:popup id="p1">
<af:dialog id="d2">
<af:panelSplitter id="ps2">
<f:facet name="first">
<af:panelGroupLayout layout="scroll"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
id="pgl2" clientComponent="true">
<af:commandButton text="Print" id="cb2">
<af:showPrintablePageBehavior/>
</af:commandButton>
<af:outputText value="Hai Popup Output Text" id="it9"/>
<af:clientAttribute name="print" value="true"/>
</af:panelGroupLayout>
</f:facet>
</af:panelSplitter>
</af:dialog>
</af:popup>
</af:panelGroupLayout>
</f:facet>
</af:panelSplitter>
</af:form>
Thanks,
Dinil Mithra V S

Thank you Srinivas,
Point 1.
I wanted to print the content of popup. So I have placed an af:outputText text inside af:panelSplitter component. But this layout is not rendering in print mode while printing from a popup ant it works without popup.
Point 2.
I have downloaded and deployed oracle dvt-demo war into my local wls.I can see the same issue (pivot table is not rendering in print mode) in my local deployed version.
Thanks,
Dinil Mithra V S

Similar Messages

  • I updated my mac's OS to Yosemite and now my eye drop tool will NOT work inside premiere pro. Can anyone help me fix this issue?

    The eyedropper tool for selecting colors to key out or to fill text will not work inside premiere pro, this error started when I updated my mac os to yosemite.

    Hi Transportation,
    Does the error occur in OS X 10.9? If not, why not remain at OS X 10.9? Is it necessary to run OS X 10.10?
    The general rule of thumb is that when you are running software that is no longer tested or supported on a new operating system, you have to prepare for anomalies like this. You may want to install a separate bootable hard drive with OS X 10.9 on it so you can continue running that software more reliably.
    Hope that helps,
    Kevin

  • Scrubbing rate is not working inside application

    I was using the application called "PlayTube" in ios 6. The "high-speed/half-speed.."scrubbing rate used to work in ios6. But after upgrading to ios7, the mode is not getting changed to low-speed  even if I drag my finger down.
    However, videos played using default "Videos" app is working fine.

    Thank you Srinivas,
    Point 1.
    I wanted to print the content of popup. So I have placed an af:outputText text inside af:panelSplitter component. But this layout is not rendering in print mode while printing from a popup ant it works without popup.
    Point 2.
    I have downloaded and deployed oracle dvt-demo war into my local wls.I can see the same issue (pivot table is not rendering in print mode) in my local deployed version.
    Thanks,
    Dinil Mithra V S

  • URL Mapping not working inside MOSS

    hi,
    I want to achieve broken URL redirection in old web application developed in MOSS.
    For this purpose, i have to use URL mapping inside web.config -
    For Example -
    <urlMappings enabled="true" >
        <add url="~/brokenpath" mappedUrl="/subsite/Pages/Home.aspx" />
    </urlMappings>
    I have checked that '/subsite/Pages/Home.aspx' url is not broken but still getting 404 exception.
    Similar tag is working under dev/local environment but not working in the production,
    Can anybody please let me know the problem or any configuration missing.
    Thanks in advance.

    Hi Saurabh, can you provide the actual broken path, both in your web.config as well as the absolute URL?
    Dimitri Ayrapetov (MCSE: SharePoint)

  • Find and item Search not working inside custom list in sharepoint 2013

    HI,
    In Sharepoint 2013 , i configured the Search. it is working in home page search Box and Find item search box  inside custom list as well But one particualr custom list  Find an item is not working. Any clue ?Thanks in Advance
    Thanks
    sanjay pradhan  

    Hi,
    According to your description, my understanding is “find an item” search box in a custom list not work in your environment.
    As search box and “find an item” search box in your home page are working, so the search service application is working.
    Do you have any customzation to the particular custom list ?
    If No, I suggest you can full crawl the data in Central Administration ->Manage Service Application->” Search Service Application”-> Manage Content Sources” to test if it works. 
    Also, please check if you have set "Allow items from this list to appear in search results" in list settings->Advanced Setting to true
    Best Regards
    Jerry Guo
    TechNet Community Support

  • Javascript not working in Popup/Dialog with contentDelivery=lazyUncached ?

    I am seeing following problem while using jdev 11.1.1.3.0
    The inline javascript function myTest2() is not available. any thought ?
    <af:commandButton text="commandButton 1" id="cb1">
    <af:showPopupBehavior popupId="p1" triggerType="action"/>
    </af:commandButton>
    <af:popup id="p1" contentDelivery="lazyUncached">
    <af:dialog id="d2">
    <af:resource type="javascript" source="test1.js" />
    <script type="text/javascript">
    function myTest2() {
    alert("you have called function myTest2");
    </script>
    Here is the content of Dialog
    calling myTest1()
    calling myTest2()
    </af:dialog>
    </af:popup>

    Please ignore the <af:resource which was added for comparison. The following code segment is trying to re-create the problem I have encountered in my project.
    The javascript is not working after the popup was showed. For some reason, the retrieved xmlhttp response not adding the javascript into the page.
    <af:commandButton text="commandButton 1" id="cb1">
    <af:showPopupBehavior popupId="p1" triggerType="action"/>
    </af:commandButton>
    <af:popup id="p1" contentDelivery="lazyUncached">
    <af:dialog id="d2">
    <script type="text/javascript">
    function myTest2() {
    alert("you have called function myTest2");
    </script>
    Here is the content of Dialog
    calling myTest2()
    </af:dialog>
    </af:popup>

  • Photoshop button not working inside of target?

    I'm operating OSX Snow Leopard and the latest edition of Muse 2.2. However, I was having these issues with the version before 2.2 as well.
    I created a simple photoshop file containing 2 states Normal and Over. When I place as photoshop button outside of the target it functions properly. When I place within the target it does not. Any suggestions? I'm using the tooltip composition widget.
    Thanks!

    It does not depend on the version of Photoshop. It will be same for all the versions.
    I understand what you are trying to explain. I would like to tell you that it works outside the trigger because when it is outside the rigger it is not in active state.
    However, when you take it inside a trigger, whenever the trigger is selected, it comes to active state. And "Whenever a link/button is in active/visted state, other states do not work on it".
    And as you said you only have two states i.e Normal and Rollover, when you insert such photoshop buttons into Muse it automatically copies the normal state settings to Active state and the rollover state settings to mouse down state.
    Please have a look at the screenshots
    When I insert a button with only two states :
    It copies the states to mouse down and active as well :
    Now, please try and insert the photoshop button in the second trigger instead of first trigger of the widget. Wthout clicking on it, just check if the color of the button inside the second trigger changes or not on hovering the mouse over it. It ideally should.
    But once you click on the second trigger, it will make it active (Whose colour is same as the normal state in your case) and all other states will stop working.
    Now, please look at the video through the link which I posted in my last comment.
    Hope this explains the situation.
    Regards,
    Sachin

  • Sorting not working inside xml format

    Ok I know my title is not clear, but I have a table that is
    called with a spry if, inside another spry data set, and I have
    been having quite a bit of trouble with it. The sorting and even
    odd would not work....(though they work on the same table with the
    same source if it is not inserted within the spry data set) I
    worked on it quite a while yesterday (got it updated to 1.6 )and
    finally got the even/odd to work using the 'other' class from one
    of your examples....that is after trying every even odd combination
    I could think of....but I still can't get it to sort.
    <table id="sortable" width="100%"
    spry:if="'{formcriteria}'=='yes'">
    <tr>
    <th width="71%"
    spry:sort="dsAgentForms::formname">Form Name and Description
    </th>
    <th width="29%" spry:sort="dsAgentForms::formnum">Form
    Number</th>
    </tr>
    <tr spry:repeat="dsAgentForms" spry:even="dsAgentForms
    other" spry:hover="rowHover">
    <td height="28"><a
    href="{dsAgentForms::url}">{dsAgentForms::formname}</a></td>
    <td><a
    href="{dsAgentForms::url}">{dsAgentForms::formnum}</a></td>
    </tr>
    </table>
    you click on the "Forms & Applications" tab to see the
    table
    http://www.nmprc.state.nm.us/als2.htm
    I am using DW CS3 and it is fairly easy to insert a sortable
    table, but somehow, with this table being inside another spry data,
    it loses its sortability.
    you see in my code I am using
    spry:sort="dsAgentForms::formname" and I know this is not usual,
    the usual would be without the dsAgentForms:: part, but this was
    just the last thing I tried before posting. I thought that maybe
    because all the rest of the table needed the extra designation,
    that maybe the sorting did as well....

    I got it........it was the syntax of the spry:sort it needed
    the below instead of what I had
    spry:sort="dsAgentForms formnum">
    it was also the same error for the even odd, they now work
    with similar syntax
    thanks for the numerous examples you give us, I can get most
    anything I want to try to work if I have a working example
    :)

  • Content Filter block attachment .scr/.cab etc... not working inside archive

    Hi,
    We have trouble that Content Filter for blocking attachments executable, scr, and cab is not working if .exe, .scr, or.cab are inside 7zip, zip or rar archive.
    How deep inside attachment ESA goes, if any?
    Antivirus config is set to 5 and some viruses passed like CryptoWall as .scr and .cab.
    So, we are blocking that extension but this time they were inside archive.  

    Hello Juraj,
    I apologise for the inconvenience.
    Currently if there are viral definitions within the attachment, the AV engine would be the first line of defence, if you for some reason notice some viral attachments bypassing your ESA, please open a TAC case so we can escalate the sample to Sophos for you to capture.
    As per content filtering.
    The scan depth on how deep it will go into a system is defined in 'scanconfig' in the CLI.
    This will show your current recursion depth.
    As per .cab and .7z attachments not being properly captured if .scr or .exe are inside it
    Currently there are some Enh request to allow the unpacking/decompression of these archive files to capture things inside it, at the moment the request is still undergoing review.
    As a temporary measure you can proactively send .7z and .cab files to the quarantine for your administrative review -- 
    The ESA will however be able to seek the executable should it be shrouded inside the .rar/.gzip and .zip archives however.
    I hope this helps.
    Regards,
    Matthew

  • Cross-reference does not work inside the object states

    Hi All,
    I use InDesign CS5.5. I have four pages document. first three page has full for text and the fourth page has multi-state object. I am trying to insert the cross reference from the third page to the multi-state object (fourth multi-state object). when I export to SWF and click the cross-reference it does not got to the fourth state, but it goes to only on the first state. can any one help me how to add the cross-reference?
    I have tried on the other way. i have inserted the text anchor on the fourth multi-state object and tried to add cross-reference, still it does not work.
    am i doing something wrong or InDesign does not have this feature.
    please help.
    thanks.
    Regards
    Ramji V K

    @Ramji V K – Do we have a "terminology problem" here?
    Do you really mean a "Cross-Reference" or do you try to control the MultiStateObject (MSO) by a "Button" that does not work propperly?
    I did not do anything with the "Cross-Reference" feature yet, so I might be on the wrong trail…
    Uwe

  • My arrow keys are not working inside flash games

    Hello,
    Whenever I play any flash game, my arrow keys are not working. They work perfectly fine when I am scrolling the site with them, but not in flash games.
    I am using Google Chrome, flash player version 10,3,181,36 and my operating system is Win7 64 bit.
    Solutions I've already tried:
    Use another webbrowser
    Re-install Flash player
    Restart PC
    Try another keyboard
    I have this problem ever since the last Flash Player update.

    Hey there Questionair1.
    It sounds like your arrow keys are not working correctly. I would start with these steps from the following article named:
    OS X Mavericks: If keys on your keyboard don’t work
    http://support.apple.com/kb/PH13809
    You may have accidentally set an option that changes how your keyboard operates.
    Choose Apple menu > System Preferences, click Dictation & Speech, then click “Text to Speech.” If “Speak selected text when the key is pressed” is selected, deselect it or click Change Key to select another key.
    Choose Apple menu > System Preferences, click Accessibility, then click Keyboard. Make sure Slow Keys is turned off. If Slow Keys is on, you must hold down a key longer than usual before it’s recognized.
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • BDC not working inside  the Workflow

    Hi,
    I created a BDC program and include it in the workflow as back ground task it not working .
    In the Business Object there it working fine. When I change it to foreground task in the workflow it working.
    If I declare as a  back ground it not working .
    Can you please tell me why this happening.
    Regards,
    Surjith

    Dear Sanjay,
    use BAPI "BAPI_MATERIAL_MAINTAINDATA_RT" or "MATERIAL_UPDATE_ALL_RETAIL" to manage Retail material.
    Gianluca

  • A4j:support not working inside rich:datatable

    One of my columns in rich:datatable is h:selectboolencheckbox which i want to select we user clicks a row
    but a4j:support is not working.
                    <rich:dataTable value="#{ch.fdetails}" var="c"  style="width:90%" columns="14">
                           <a4j:support event="onRowClick" action="#{ch.toggle}" reRender="select" ajaxSingle="true"> 
                            <f:setPropertyActionListener target="#{ch.fd}" value="#{c}" /> 
                     </a4j:support>
                   </rich:dataTable> It doesn't even call action on bean which is toggling the chechkbox.

    Hi, I assume you are using <rich:column>
    so try to change event to onselect or onchange and if your action is method call so change
    action="#{ch.toggle}"to
    action="#{ch.toggle()}"

  • SSIS 2012 Script Task Debugging not working (VSTA Popup but no script displayed in IDE)

    Hi,
    I am trying to debug 2012 SSIS Package but for some reason its not working. Basically when I run package (64bit mode) it pop up Script IDE but never brings up Script (see below). Usually when debugging of script starts it should break execution at the code.
    Anybody experienced this issue with SSIS 2012 ?
    Thanks,
    Nayan
    Visit My Blog (Home of BI Articles) 

    Hi,
    I am trying to debug 2012 SSIS Package but for some reason its not working. Basically when I run package (64bit mode) it pop up Script IDE but never brings up Script (see below). Usually when debugging of script starts it should break execution at the code.
    Anyone has clue whats going on here?
    Thanks,
    Nayan
    My Blog |
    Convert DTS to SSIS |
    Document SSIS |
    SSIS Tasks |
    Real-time SSIS Monitoring

  • Coverflow not working inside itunes

    coverflow works inside of the itunes library. but i click on my ipod and the music tab the button isent even clickable but its there.
    http://img188.imageshack.us/img188/4259/coverflow.jpg
    ^picture

    Yeah, it doesn't work for Apps in any view other than grid, either.

Maybe you are looking for