DVT: Graph - Issues with Automatic Sizing Inside PanelDashboard

Hello. To start off, here is the background information:
JDeveloper Version: Studio Edition Version 11.1.2.2.0, Build JDEVADF_11.1.2.2.0_GENERIC_120418.2212.6183.1
WebLogic Version: JDeveloper built-in version
Error messages received: None
We have developed a DashboardAPI for internal use at my company that is largely based off of the example provided on the ADF Demo page:
http://jdevadf.oracle.com/adf-richclient-demo/faces/visualDesigns/dashboard.jspx
We have also implemented the minimize and maximize functionality as it exists in the demo. However, in all of your dashboard panel boxes, we have a dvt:Graph component as the direct child. The inline style for all dvt:graphs is "width:100%; height:100%;". The actual flash component for the dvt:graph appears to be completely stretched when the page is first rendered. You can tell this by right clicking on the graph component and selected the Flash settings; by doing this, the entire flash component becomes "grayed out". This is where you can see this. Now if you minimize the graph to the dock bar, then restore it, the panel box comes back, but the dvt:Graph "rerenders", and stretches even further to completely fill out the entire panel box. I'm trying to figure out why it would behave like this. The only difference I see is that while restoring the panel boxes from the "dock", the code performs a prepareOptimizedEncodingOfInsertedChild(), instead of when the dashboard is initially created upon first load by creating the graph components programatically and adding them directly to dashboard.getChildren().
I have included two links to screenshots showing the before minimize and after minimize to illustrate what I mean:
Before: http://www.flickr.com/photos/60499750@N05/8534801846/
After: http://www.flickr.com/photos/60499750@N05/8534801824/
Does anyone have any idea why this would happen?
Thanks

No ideas on this one? Maybe just point me in the right direction, something I can debug or look at? Anything would be greatly appreciated.
Thanks

Similar Messages

  • Issue with automatic numbering of figures in a Technical Document

    Hi everyone, thanks for taking the time to examine my issue. Basically I've inherited a Technical Document which was imported from Quark some years ago and badly cobbled together in IDesign by a novice and I'm bringing it up to standard to make it a bit more usable but do need to retain the conventions within it. It was written as a chaptered document so I've set up the 'chapters' as Sections in InDesign so as to allow for page number variables and a decent ToC etc. I'd like to have the diagram numbers (and associated x-references) automated too, but am floundering a bit with this.
    At the moment all the image captions are set in one paragraph style throughout the document, and I've been playing with the Bullets and Numbering Dialogue within this paragraph style. All the captions are part of the body text or in their own text frames (As opposed to being linked with image metadata or anything like that).
    The  manually written image number format in the document reads like 'Figure Chapter number, colon, Image number,  and then some have (a), (b), or (c). followed by the name)'  eg (worst case) Figure 8:5(c) Sealing the Blahblah Adaptor
    I realise I might have to set up a named list for each 'chapter' because I can't find a way to define the numbered list to show me;
    'Section number, dot, Image number (starting at one then continuing until the next section starts) dot and then if I need it an a, b, c. etc too'
    Not forgetting I have set up the written 'chapters' as Sections in Indesign.
    If I try adding the 'section symbol' to the number field in the bullets and numbering dialogue (inside my paragraph style)  I just get a weird little blue shape that presumably starts a new section rather than identifies the section I've put it in (so that isn't it) and if i try 'Chapter Number' from the number placeholder menu it only ever says '1' because InDesign only allows one 'chapter' per document (and my chapters are actually sections!).
    I do find the coding system for the 'insert special characters or numbered placeholder' really confusing - I'm not familiar with all of them, (and throwing circumflex's and hashtags in doesn't brighten my day) and since I don't know the codes trial and error seemed to be the way forward.  How are we supposed to know the codes - is there a list online somewhere?
    I could manually type the section number in the 'Number' text box in the dialogue (if I make a named list for each chapter) and lift a layer of confusion but surely there's a way to identify a section in a numbered/named list?
    I think I'm really close but it's driving me a bit crazy - I'm sure identifying levels within named lists might be something to do with it, but I can't see how to alter that. Do I need to set up a new paragraph style AND a new named list for each 'chapter' (section)? The alternative could be to split the document up and make a book file so the 'chapters' become real chapters? (I don't want to do this!)
    There's also something in RealWorld InDesign that worries me a bit - it says (even if I had it working the way I want) that it might number unthreaded text frames in the order they were created rather than the order they appear on the page? Um...
    The other thing is I do have a mixture of inline and anchored objects throughout this document so that might mess things up too?! *Sigh!*
    I'm using InDesign 5.5. for Windows. Many thanks for any tips! Hope somone out there is less confused than me!
    kind regards
    Phil

    You're so right!!!
    I really liked the idea of writing a book in pages. Have to write a second edition of something and did not want to use Word2008 on the Mac, because after one year it is still an unstable beast (crashes, crashes).
    So I checked ot Pages 09 - and alas
    * no xreferences
    * no automatic numbering of captions, figures, ...
    Then I asked my publisher for FrameMaker: The answer was: NO longer on the Mac since 2005. I can't believe this. Not a single decent program to write a book on a Mac.
    I don't want to go back to LaTex after 20 years - HELP me somebody
    and show me a few (automatic) workarounds how to play the automatic numbering and Xref tricks in pages.
    Otherwise it's really neat - BUT - nut for writing documents longer than 20 - 30 pages that need off that book like stuff.

  • Issue with re-sizing JTable Headers, JTabbedPane and JSplit pane

    Ok, hopefully I'll explain this well enough.
    In my Swing application I have a split pane, on the left hand side is a JTable and on the right hand is a JTabbedPane. In the tabs of the JTabbedPane there are other JTables.
    In order to make the rows in the JTable on the left and the JTable(s) on the right line up, the Table Header of all the tables is set to the size of the tallest (deepest?) table header.
    Hopefully so far I'm making sense. Now to get to the issue. One of the tables has a number of columns equal to the value on a NumberSpinner (it represents a number of weeks). When this value is changed the table is modified so that it contains the correct number of columns. As the table is re-drawn the table header goes back to its default size so I call my header-resize method to ensure it lines up.
    The problem is this: if I change the number of weeks when selecting a tab other than the one containing my table then everything is fine, the table header is re-sized and everything lines up. If I change the number of weeks with the tab containing the table selected, the column headers stay at their standard size and nothing lines up.
    To make things more complicated, I also put System.out.println's in as every method called in the process to obtain the size of the table header. And every println returned the same height, the height the table header should be.. So I'm really confused.
    Could anyone shed any light on this?
    Thanks.

    Okay I managed to solve the problem by explicitly revalidating and repainting the table header.
    Not sure why it wasnt doing it properly for that table when all the others where fine.
    Oh well...

  • Graph issue with "scale object to pane"

    I have made a program that  uses a mixed signal graph to show result on a screen. I have selected "scale object to pane". The program automatically goes to fullscreen when started. I have a small problem though. It works well with some screen resolutions but sometimes the graph itself is beneath the window. I set the Yscale Maximum and Minimum in the program but 0 is still below the border. Anyone know a way to fix this?
    Pictures below 
    How it looks
    How it should look
    Solved!
    Go to Solution.

    Hi Peter,
    place a property node on the block diagram ("App" by default) and select Display->Monitor
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Having multiple issues with automate batch - skipping files, misplacing watermarks etc

    I record the action exactly how I want it: editing, placing the watermarks (place embedded) putting them where I want them and re-sizing, save as (with jpg details), etc before I stop recording. When I do the Automate Batch with this action, the watermark is placed nearly completely off the image, it will go from file 1 to file 10 (skipping files 2-9) This worked fine on a previous Batch with a similar action. Nothing is working correctly for this one. I have also tried using "Place Embedded" with the same result. The files are NEF files being saved to JPG. After the it finishes the action, the "Save As" menu opens.
    Adobe Photoshop Version: 2014.2.2 20141204.r.310 2014/12/04:23:59:59 CL 994532  x64
    Operating System: Windows 8.1 64-bit
    Message was edited by: Adam Jordan

    It is difficult to process different size image and add watermarks.  You stated your currently processing RAW Nef files.  RAW Files can have ACR setting saved for them which can size them differently. They can never have been processed with ACR so have not setting and will use your default setting for your camera. ACR also remembers your  last used  workflow setting which can change document size.  In your Action I see you using Place which has some setting for the place transform.  However I see no step before the the place to handle document size.  So the place step will work differently on different size documents. The Place is followed by a move and then a second place and move.  You then flatten and save which is not necessary Saving a jpeg from a layered document will save a flat jpeg.  Quality 12 is also overkill.
    This action may work well on a particular size document with the same aspect ratio and orientation but will fail on others.
    Crafting Actions Package UPDATED Aug 10, 2014 Added Conditional Action steps to Action Palette Tips.
    Action Actions Palette Tips.txt
    Action Creation Guidelines.txt
    Action Dealing with Image Size.txt
    Action Enhanced via Scripted Photoshop Functions.txt
    CraftedActions.atn Sample Action set includes an example Watermarking action
    Sample Actions.txt Photoshop CraftedActions set saved as a text file.
    More then a dozen Scripts for use in actions
    Download

  • Issue with Automatic Purchase Order creation.

    Hello
    I am creating Automatic Purchase Order via transaction ME59N.
    I have  1 Purchase Requistion for 2 line items having 2 materials .When I create PO the system is creating 2 different PO's instead of one PO even though the Vendor is same.I am not able to understand why 2 PO are created even though PR is 1 .
    I would like to have one Purchase Order with 2 line items in the same way I have 1PR with 2 line items.
    Regards

    Hi Satish
    Thanks for the reply.
    I checked the parameters and it is creating 2 PO when the Indicator Ordering address is set.If I uncheck this Indicator then only one PO is created.
    But now my question is from where is the Ordering address taken because for both line items Vendor is same and ordering address is also same.
    Then why the system is creating new PO?
    Regards
    Vaibhav Mahajan

  • Having an odd issue with automatic downloads?

    On my iPad Air, I have turned off the automatic downloads for apps and music (so it's not green and I want it to ask for the password), but not for updates (I want automatic updates). Recently when I download an app, it does downloads automatically and for updates it ask me for the password. I tired switching the on/off and it still automatically downloads. Does anyone else have this issue and know how to solve it?

    Try This...
    Close All Open Apps... Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear...
    Usually takes about 15 - 20 Seconds... (But can take Longer..)
    Release the Buttons...

  • Issue with automatic BP creation

    Dear All,
    Through T-code Solution manager, I am trying to automatically create BP in solution manager from my production server but all the IDs in prodution server does not appear in the transaction. Could anyone tell me, what could possibly the reason?

    Hi,
    Please check the Solution. Only those SID will be displayed which are in that particular Solution.
    Regards,
    Shyam.

  • Issues with interlaced H.264 playback inside of Premiere

    I recently recorded a live event with the Blackmagic H.264 Pro Recorder and I'm having some issues with the video inside of Premiere Pro CC 2014. I recorded it in 1080i which was the output of the camera. The video files play fine in quicktime, VLC, etc. Once I pull them into premiere, or any adobe software, I have all kinds of issues. Once in a timeline, the audio plays fine(works as it should the whole time), and at first the video looks fine, but after about 15 seconds the video will skip to a random part of the file. After the initial playback anytime I play it after that the audio and video are no where close to being in sync with each other. When I scrub to go somewhere else in the timeline I get the same thing. When I've recorded progressive sources in the past with the Blackmagic H.264 Pro Recorder I  have never have this issue, just with interlaced. Doesn't matter what the resolution is. I created the timeline from the video source like I do with most of my videos so I don't think the problem lies within the sequence settings. I work with interlaced files in the ProRes format on a weekly basis and never have this issue. I can't say that I have ever worked with any interlaced h.264 files except the ones I've created with the Blackmagic H.264 Pro Recorder so I'm not sure is the problem is coming from premiere or the capture device.

    A camera that doesn't record?  Strange.
    You might try conversion.  I've used a couple of programs to convert my non-standard stuff to something PP could work with.  Both are safe to install on a production rig.
    http://www.videohelp.com/software/XMedia-Recode
    XviD4PSP 5.10.346 / 7.0.122 Beta

  • Has anyone had issues with the most recent Yosemite update

    I installed Yosemite October of 2014 mainly because I needed to update itunes to continue to help my daughter maintain her music files. Anyway the reason hardly matters. My computer and Yosemite did not get along. Posted up a file of my computer condition for people to look at here and the basic recommendation was to delete this that and the other thing. So I did that and the computer worked somewhat better. However I really am not sure if it was working better because Apple had been making progress with Yosemite ironing out Yosemite bugs. I had not reinstalled any of the software that it was recommended I delete back in October. So I doubt that is an issue.
    Two weeks ago while updating, generally, a Yosemite update started downloading to my computer. It is now running 10.10.2.
    Since then Mozilla crashes about five times a day and runs very slowly most of the time. Wondering if there is anything I can do or should I just wait it out...hope for the bestv AGAIN. I am encouraged by the fact that over time from October to mid February, Yosemite and my computer kept getting along better and batter. Since the update I am more or less back to square 1 as far as general speed and functionality and behind the eight ball as far as Miozilla goes as it is crashing constantly.
    I also do not like how update files are identified in Yosemite. There are times when all you get is a notification that there are updates ready with no identification of what they are. Had I known that was a Yosemite update, I would  not have touched it. What is up with this no identification of update files? Trying to ambush us now because people are beginning to avoid their updates? Good grief Apple.
    Anyway....any ideas? Just wait it out? Hope Apple gets back on a path of bug fixes for Yosemite? Anybody with a quick fix for this one?

    Automatically checking for updates is not the same thing as automatically installing updates and even automatically downloading updates is not the same thing as automatically installing updates. If Apple has now decided to describe them and implement them that way ....that is a mistake!
    Here is what I have in my App store preferences although I repeat, I have never changed anything. What items are selected there are the items selected ions ago or defaulted in possibly with iTunes 12.0 installed and I was always in the past been given the opportunity to view any updates BEFORE They installed.
    "Automatically check for updates" is checked. That should not cause an issue of any kind. If it is that is a problem not of my making!
    "Download newly available updates in the background" is checked with an additional descriptive line of information that reads "you will be notified when the updates are ready to be installed" I was going to uncheck this. Although I did not ever go to this location and change my settings which leads me to believe that this is a default choice in Yosemite or iTunes 12.0 as this is not the way I am used to my updates either coming to me or being installed
    "Install app updates" is checked ...Really....with permission, without permission, with notification? What the heck does this line really mean? Going to uncheck this
    "Install OS X updates" IS NOT CHECKED
    "Install system data files and security updates" is checked. This is another one that I am going to uncheck
    "Automatically download apps purchased on other macs" is not checked
    This system clearly Installed an OS X update without even asking me if I wanted it installed regardless of the fact the box is not even checked. So I have no idea how it managed to do that when the check box for OS X updates is not checked. A big OS X screen came up as the thing started installing leaving little doubt what it was at the point of being too late to do anything about it
    There is an interesting element to the relationship between "Download newly available updates in the background" and "Install app updates". If you uncheck the former, a check immediately appears in the box for the latter and the box ix grayed out preventing you from making further changes. So your options are for updates to be downloaded in the background or have updates installed without prior notification. What the heck kind of a choice is that?                             
    I am going to uncheck all of these for the time being except "automatic checking" and "Download newly available updates in the background". The former  should not cause a problem and has never in the past caused a problem. Seems to me that I am forced to the latter for now. However to be perfectly honest i no longer have any idea what Apple is doing and I am not completely convinced that they know either.....not any more
    I am going to go to Apple Tech Support and get full descriptions from them as it appears possible that they have changed their definitions and descriptive materials with regard to update activity either in Yosemite or iTunes.
    Finally, this issue with automatic checking has nothing to do with Mozilla crashing five times a day in Yosemite. That is a separate problem and I guess I am just going to have to hope that Apple Yosemite bug fixes brings this back under control.

  • I have a MacBook 5,1 (13.3" aluminum from 2007 or 2008). Automatic updates will only let me get to OSX 10.5.8.  Can I upgrade to Snow Leopard, Lion 10.6 or even 10.6.8?  Also, will I have any issues with my iPhone if it's updated to iOS 7.1?

    I have a MacBook 5,1 (13.3" aluminum from 2007 or 2008). Automatic updates will only let me get to OSX 10.5.8.  Can I upgrade to Snow Leopard, Lion 10.6 or even 10.6.8?  Also, will I have any issues with my iPhone if it's updated to iOS 7.1?

    The 10.6 Snow Leopard DVD is in the Apple online store. You can get it for $19.99. You will need to be running 10.6.8 to access the App Store to order Lion or Mountain Lion. http://store.apple.com/us/product/MC573/mac-os-x-106-snow-leopard
    System Requirements for 10.6:
    Mac computer with an Intel processor
    1GB of memory
    5GB of available disk space
    DVD drive for installation
    Some features require a compatible internet service provider: fees may apply.
    You can upgrade direct from 10.6.8 to 10.8 Mountain Lion without going through 10.7 Lion with the Late 2008 model 5,1 Aluminum Unibody. The Model 5,1 will probably run 10.9 Mavricks when it comes out.
    10.8 Mountain Lion is a download from the App Store, the price is $19.99.
    Mountain Lion will require at least 2gb of RAM but really needs 4gb to run smoothly.
    As for third party programs see this list for compatibility with 10.8 http://roaringapps.com/apps:table
    Also Mountain Lion doesn't run any Power PC programs. To see if you have any Power PC programs go to the Apple in the upper left corner and select About This Mac, then click on More Info. When System Profiler comes up select Applications under Software. Then look under Kind to see if any of your applications are listed as Power PC. Universal and Intel will run under Mountain Lion.
    Before Mac switched to Intel processors in 2006 they used Power PC processors from 1994 to 2005. Power PC 601 through 604, G3, G4 and G5. Applications written for the Power PC processors need the application called Rosetta to run on Intel processors. This was part of the Operating System in 10.4 and 10.5 but was an optional install in 10.6. With 10.7 Lion Apple dropped all support for Power PC applications.

  • Issue with check generation in Automatic Payment Program

    Hi experts,
    I need your inputs for an issue with check generation in Automatic Payment Program. Trying to make a payment to a US vendor with payment method C. The due item is getting picked up and a clearing document is getting generated. But Check is not being generated, niether can I see an entry in PAYR table. However, if I try to generate a check manually in FCH5 for the same clearing document, it is working.

    Have u checked the Variant created in F110 - Printout / data medium, whether the Hose bank details are correctly set or not.
    If yes, check the Printer details
    Let us know the results
    Thanks

  • Automatic height issue with iViews in WPC

    Hi. We have EP 7.0 SP18 implemented. I am busy developing websites via WPC. I want to use iViews within the webpages. When I insert the 'KM document iView with no Content filter' into the webpage - it does not fully display. When I preview it within the PCD - it displays correctly with the sizing properties set to Automatic. The iView points to a html file in KM. I have followed SAPNote 1243600 without testing the workaround offered in solution B. Is there any other advise/solution that I can try?
    Plse advise.

    Hi Melvin,
    Check this thread
    IView in WPC  as Full page.
    If you need more information on WPC than visit this link
    https://wiki.sdn.sap.com/wiki/display/KMC/WebPageComposer
    Reagrds,

  • How can I stop receiving email automatically from the community when they have issues with there problems regarding the apple products.

    How can I stop receiving email automatically from the community when they have issues with there problems regarding the apple products.

    Click here for the instructions on stopping the emails.
    (85713)

  • I am having issues with adjusting the duration of time for each still frame and transition in imovie 11.  Each time that I adjust these times, the app does not accept the change, and automatically enters its own time. Am I doing something wrong?

    I am having issues with adjusting the duration of time for each still frame and transition in imovie 11.  Each time that I adjust these times, the application does not accept the change, and instead automatically enters its own time. Is there a work around this? Or am I doing something wrong? Please Help!
    Thank you,
    lagrl

    Have you tried turning off automatic transitions ? Choose file - project properties and follow the dialogue box to change duration with a slider.  iMovie also doesn't allow a transition to be more than 50% duration of the clip its attached to. In other words if the clip is 4 seconds the transition cannot be more than 2 seconds and remember that relates to the first clip as the following clip (right side) is pulled back to overlay it.
    Does this help.  Perhaps you already know this ?

Maybe you are looking for

  • Why Will Facetime not let me sign in?

    I got my iPod Touch 4 in San Francisco Apple Store, December 2010. Apple Store Rep helped me set it all up. Everything has been working fine, until a week or so ago when, out of the blue, my FaceTime just stopped working. When I click on the FaceTime

  • Problems installing 10 on my computer?

    O.K., I removed the old version, restarted my computer, made sure my security settings and ActiveX control settings were where they recommended they be and installed the new 10,1,53,64 version on my computer.  I get the little 'movie' and it tells me

  • Postfix/master "master exite time has arrived"

    Recently I've been seeing lot's of these entries in the mail.log - every minute. I found an archived discussion at https://discussions.apple.com/thread/2251240?start=0&tstart=0 Archived or not I'd like to bring it up again since in google the archive

  • How I install a Sync Server for use on my Intranet?

    Recently the user of my intranet have told me that like sync Firefox data but we not access to Firefox Sync server of Mozilla. I have visit the page of [http://wiki.mozilla.org/Services/Sync Sync on Mozilla Wiki] but not found information about this.

  • IPad restore and garage band

    I recently restored my iPAD 1 and now I can not load garage band.