Rendering not right until refresh

Hi,
With some of my components, things don't look good until a resize of the container occurs. For example, my custom table column sizing will be messed up. I'll move the bounds of the window 1 pixel, and everything 'snaps' into place.
Is there a way to programatically get this effect?
Thanks in advance!
Rob

Does this only occur with Chrome?  Do you have any third party browser extensions enabled or virus/security/firewall software/utilities running that you can temporarily disable to see if they are interfering?

Similar Messages

  • Pages not loading until refresh

    Hi all,
    Recently I have noticed on my Ipad and PC that webpages like google for example do not load, they get stuck until I refresh then it will go through and load the page. Also youtube has problems when I am using the ipad with certain videos just refusing to load. Wat can I do to rectify this problem!
    Thanks
    I am using a Netgear R6300 router

    Could be a DNS problem. Try using Google DNS instead - 8.8.8.8 and 8.8.4.4
    If you found this post helpful, please click on the star on the left
    If not, I'll try again

  • Report with Stored Procedure does not return until refresh

    I'm using RAS server 2008 to run many Crystal reports from a web application (TrackWise) over Oracle 10g DB.
    A new report is using a stored procedure that takes several minutes (5-10) to return before the rest of the report's SQL can execute.
    When running the report from Crystal Developer there is no problem,
    but when running from the application (using the RAS), the report seems to be running forever,
    However, if you wait a few minutes for the DB utilization to drop (i.e. for the stored procedure to finish) and refresh - the full report appears on the screen in a second.
    Since I have many other reports that run for much longer time with no issue, I assume that this has nothing to do with the web application, but rather related to the connection between the RAS and the DB (i.e. the idle time between the beginning of the stored procedure execution to its return and the continuation of the report creation).
    I assume that I need to change one of the RAS settings/ parameters (in the properties or in the registry), but which?
    Please assist.

    Since this app is from TrackWise, I'd recommend contacting TrackWise and see if they have an answer for you. As it is, we have no idea how they implemented the CR components in their app. If they cannot help you, it should be them coming here and asking us - or better yet they should be creating a phone incident.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Page not loading until refresh still in 4

    I don't know if anyone else gets this and I would be interested to know why it happens.
    Occasionaly I will pick a site that just sits there try to load. Reselecting it makes it load no problem.
    What could cause this?
    One other thing that bugs me the search forum bar on the right of you screen why does it have a small search bar within a bigger one, its been that way for a long time.
    Many thanks

    Hi,
    What could cause this?
    That's usually symptomatic of DNS lookup issues. Try using the DNS settings provided by [OpenDNS|www.opendns.com] to see if it makes any difference.
    why does it have a small search bar within a bigger one
    Dodgy coding on the forum page, nothing more than that I'm sure Apple will eventually get around to fixing it.

  • Custom Cell Renderer / Video garbage on "refresh"

    I have created a custom Cell Renderer for my JTable. When the application in which this JTable is displayed, is moved into the background and then brought back "front", The application does not redraw itself completely.
    I am able to see the information contained in the JTable but none of the surrounding components. When I do a mouse click on any of the background of the surrounding panel, nothing happens.
    In order to get the entire Panel/View/all visible components to refresh themselves, I have to click on aother component (example would be switching to a different panel of the tabbed pane.)
    This only happens when I have a JTable with this particular Renderer showing. Any other panel or JTable not using this Renderer refreshes completely.
    Here is my Cell Renderer most of which I borrowed extensively from info posted in these forums:
    import java.util.*;
    import javax.swing.*;
    import javax.swing.table.*;
    import javax.swing.border.*;
    import java.awt.*;
    import java.io.*;
    * This is a much lighter version of the multiline renderer.  It does need to have newline
    * characters at the points where the next line should occur.
    public class CTAuditTableCellRenderer extends JList implements TableCellRenderer {
        public CTAuditTableCellRenderer() {
            setOpaque(true);
            ListCellRenderer renderer = getCellRenderer();
            ((JLabel)renderer).setHorizontalAlignment(JLabel.CENTER);
            setCellRenderer(renderer);
        *   getTableCellRendererComponent() is the only method that must be over-ridden.
        *   @param table the JTable holding cell we wish to render
        *   @param value the object which we wish to put into the cell
        *   @param isSelected boolean to allow selected cell to appear as such
        *   @param hasFocus boolean to alert as to the cell having focus
        *   @param row row of the JTable in which cell resides
        *   @param column column of the JTable in which the cell resides.
        *   @return Component the image of the value object.  Not a true object but an
        *   image of the object.
        public Component getTableCellRendererComponent(JTable table, Object value,
                                    boolean isSelected, boolean hasFocus, int row, int column) {
            if (isSelected) {
                setForeground(table.getSelectionForeground());
                setBackground(table.getSelectionBackground());
            } else {
                setForeground(table.getForeground());
                setBackground(table.getBackground());
            setFont(table.getFont());
            if (hasFocus) {
                setBorder( UIManager.getBorder("Table.focusCellHighlightBorder") );
                if (table.isCellEditable(row, column)) {
                    setForeground( UIManager.getColor("Table.focusCellForeground") );
                    setBackground( UIManager.getColor("Table.focusCellBackground") );
            } else {
                setBorder(new EmptyBorder(1, 2, 1, 2));
            String str = (value == null) ? "" : value.toString();
            BufferedReader br = new BufferedReader(new StringReader(str));
            String line;
            Vector v = new Vector();
            try {
                while ((line = br.readLine()) != null) {
                    v.addElement(line);
            } catch (IOException ex) { ex.printStackTrace(); }
            setListData(v);
            if(v.size() > 1){
                table.setRowHeight(row, (table.getRowHeight()+ 3)* v.size());
            return this;
    }Thank you in advance for your constructive, insightful, and applicable replies.
    Jerry

    Here is an entire example that shows the situation of the Frame (in this case) not updating/refreshing all of it's components when regaining focus.
    To simulate the problem, simply move "something"/another window over the sample frame and then move it off. In my case the scrollbar and the headers do not reappear until I have selected a row and scrolled the table.
    Here is the example code:
    import javax.swing.*;
    import javax.swing.table.*;
    import javax.swing.border.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.event.*;
    public class MultiLineCellExample extends JFrame {
      MultiLineCellExample() {
        super( "Multi-Line Cell Example" );
        DefaultTableModel dm = new DefaultTableModel() {
          public Class getColumnClass(int columnIndex) {
            return String.class;
        dm.setDataVector(new Object[][]{{"aa aa aa aa aa\naa aa aa aa aa\naa aa aa aa aa","b","c"},
                                        {"A","B","C\nC"},{"x","y","z"}},
                         new Object[]{"1","2","3"});
        JTable table = new JTable( dm );
        table.setDefaultRenderer(String.class, new MultiLineCellRenderer());
        JScrollPane scroll = new JScrollPane( table );
        getContentPane().add( scroll );
        setSize( 400, 130 );
        setVisible(true);
      public static void main(String[] args) {
        MultiLineCellExample frame = new MultiLineCellExample();
        frame.addWindowListener( new WindowAdapter() {
          public void windowClosing( WindowEvent e ) {
            System.exit(0);
    }And here is the Renderer code:
    import java.util.*;
    import javax.swing.*;
    import javax.swing.table.*;
    import javax.swing.border.*;
    import java.awt.*;
    import java.io.*;
    public class MultiLineCellRenderer extends JList implements TableCellRenderer {
        public MultiLineCellRenderer() {
            setOpaque(true);
            ListCellRenderer renderer = getCellRenderer();
            ((JLabel)renderer).setHorizontalAlignment(JLabel.CENTER);
            setCellRenderer(renderer);
        public Component getTableCellRendererComponent(JTable table, Object value,
                                    boolean isSelected, boolean hasFocus, int row, int column) {
            if (isSelected) {
                setForeground(table.getSelectionForeground());
                setBackground(table.getSelectionBackground());
            } else {
                setForeground(table.getForeground());
                setBackground(table.getBackground());
            setFont(table.getFont());
            if (hasFocus) {
                setBorder( UIManager.getBorder("Table.focusCellHighlightBorder") );
                if (table.isCellEditable(row, column)) {
                    setForeground( UIManager.getColor("Table.focusCellForeground") );
                    setBackground( UIManager.getColor("Table.focusCellBackground") );
            } else {
                setBorder(new EmptyBorder(0, 0, 0, 0));
            String str = (value == null) ? "" : value.toString();
            BufferedReader br = new BufferedReader(new StringReader(str));
            String line;
            Vector v = new Vector();
            try {
                while ((line = br.readLine()) != null) {
                    v.addElement(line);
            } catch (IOException ex) { ex.printStackTrace(); }
            setListData(v);
            if(v.size() > 1){
                table.setRowHeight(row, (table.getRowHeight()+2)* v.size());
            return this;
    }Please, this is a very annoying problem and I would appreciate help in solving.
    Jerry

  • Audio in a sequence falls silent right until the end of the sequence

    Hmmm, ok, maybe I am completely clueless.... Anyway: I am making a video with 3 dv-clips that I imported previously. When I drag the clips from the browser into the timeline and render them, everything is ok and plays well. Then, after a little editing, i.e. cutting the sequences into smaller pieces, but leaving everything in the same sequence in the timeline, at some point parts from a sequence right to the end of it, fall silent. I can still see the audio in the viewer, but the audio meter itself shows zero audio and I can't hear anything anymore over the speakers. This goes right to the end of the sequence, the next sequence again starts with sound but also falls silent after a while, right until its end. Only the last sequence retains its sound right to the end. The silence starts at some point within a clip of a sequence, but there is no correlation to the marks of the sequence.
    I have not (knowingly) done any audio editing, although I am working on a German keyboard and my menus show some odd commands, e.g. Cmd-Y for Undo because of this (the German keyboard goes QWERTZ and YXCV, so Y and Z exchange places) and I am still hitting Cmd-Z when I want to undo stuff, but Cmd-Z itself does not seem to have any function.
    So, it looks like I am simply inadvertently giving FCX the command to shut up from a certain point in my clip onward right to the end, without actually silencing the data, since it is still visible in the viewer. I am stumped.
    I had this happening to me a couple of times and the last time my only (desperate) remedy was to delete all the clips in the timeline, drag the originals back from the browser into the timeline, render again etc. etc. Well, rendering takes about 3 hours, so I'd rather prefer learning what the heck is the stupid thing I'm doing wrong. Any suggestions, anybody?

    Well, not silly, just desperate;-) I tried a similar workaround. First I re-copied the two clips concerned into the sequence, cut them into pieces (it was a video of a concert, so I cut right after every song) and rendered the pieces separately. All went well, except for the last one, at which FCX had run out of memory again (how much does this s...er use anyway? I have 1.25 gigs of RAM, 4 gigs free on my boot partition and 20 gigs free on the document partition with the video; and NOTHING ELSE running). Anyway, repeating the render for the remaining clip was eventually no big deal either.
    I saved after every step, so I would know, when something went wrong, but nothing did.
    So, right now it runs oK, but leaves a somewhat stale feeling in my mouth, since I prefer knowing where the problems come from. My guess would be either a memory-related issue, or that, due to this strange shift in key commands owed to my German keyboard, I hit the wrong keys a couple of times and those did something elaborately strange to my audio tracks. Well, when it comes up again and I can catch the culprit, I will let you know. Thanx for your input for now;-)

  • Swf often won't load until refresh

    Around noon yesterday we seem to have introduced a bug that causes our swf to NOT RENDER until you refresh the browser.  Upon subsequent refreshes it renders very quickly.  I looked through my commits and couldn't yet figure out what changed to cause this.  It seemed like a CSS change might be the one that led to the problem.  I could give you before and after swfs if you would be able to analyze them.
    randomdorm.com

    are all 3 files in the same directory?
    if not, you probably have a path error in your loading code.  (the path is relative to the embedding html's location.)
    if yes, you probably have incorrect/incomplete embedding code.  (to test, use the html file generated by flash without editing.)

  • Unknown Column Name "XYZ" not detemined untill runtime.Select query.

    Hi,
    I have written a query in ABAP.I am getting following error.Can some one help me resolve this.There is a column "LANDX" in standard table T005 of PI which i need to get values from. The problem is that the column is visible only at runtime and not otherwise.How can i fetch data from this coulmn writing a select query for this.
    Query written is:
    SELECT landx from T005 into table it_t005.
    Error:
    "Unknown column name "XYZ" not determined untill runtime,you cannot specify a field list."

    Hi Deepika u were right. that there is a landx field but it is included in that table.
    so u cant exactly get it.
    now u can get ur country name and iso code just like this.
    tables: t005t  , t005.
    data: BEGIN OF it OCCURS 100,
            landx like t005t-landx,
            intca like t005-intca,
            END OF it.
    SELECT t005t~landx t005~intca   into CORRESPONDING FIELDS OF TABLE it
      from T005t
      INNER JOIN t005 on ( t005t~land1 = t005~land1 ).
    it is fulfilling ur need.
    Edited by: Matt on Feb 3, 2009 7:49 AM - Please don't use txtspk

  • Preloader Not Loading Until The Start of Lesson In Captivate 7

    I created a Scorm 2004 compliant lesson using Captivate 7. The file size is ~7MB. When I load and run the lesson on our LMS I don't see the preloader until 3-4 seconds before the file loads. I'm staring at a blank screen for about 45 seconds before anything happens. I have the preloader set at 10% but I can't get it to work.
    I loaded the file to one of our FTP sites and ran it on an html page and it does the same thing.
    Our customers are asking us why there is no indication that the lesson is loading and all I can say is it's a problem with Captivate 7.
    I upgraded to 7 because I was told the problem was fixed, but it's still bad.
    Any help is appreciated.
    Thanks

    Yes, it's set to look in the Cp7 preloader folder. I found this on a Captivate website and I think it answers the question.
    "As mentioned, preloaders are only really applicable for HTM/SWF output. But what you may not realize is that they will only work if the content is served from a web server over HTTP. Conversely, the preloaders will NOT work if the same content is served up from a LAN server drive over TCP/IP.  This is due to the fact that SWF preloaders need to communicate with the server to calculate and show the percentage of file currently loaded.  This communication works with web servers, but not with LAN servers."
    Unfortunately, Cp7 preloader is going to work on our LMS. I'm going to build a preloader class in Flash and call the Cp7 swf using that.
    Thanks for your help
    Date: Sat, 18 Jan 2014 00:34:37 -0800
    From: [email protected]
    To: [email protected]
    Subject: Preloader Not Loading Until The Start of Lesson In Captivate 7
        Re: Preloader Not Loading Until The Start of Lesson In Captivate 7
        created by RodWard in Adobe Captivate - View the full discussion
    If you still have Captivate 6 on your PC, then make sure that the preloader in this Cp7 project is not pointing at a folder in the Cp6 install directory.  It should be using a Cp7 preloader.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6026026#6026026
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6026026#6026026
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6026026#6026026. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Adobe Captivate at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Would someone please inform me why even though I ordered my iPhone 5 on the 14th of September, where the confirmation told me that I would receive it on the 28th of September, my "Order Status" now informs me that it will not ship until October 19th?

    Would someone please inform me why even though I ordered my iPhone 5 on the 14th of September, where the confirmation told me that I would receive it on the 28th of September, my "Order Status" now informs me that it will not ship until October 19th?

        Hello Leisabee!
    I am so excited for you to get your iPhone 5. I know how eager we all are to have this phone!  I know you mentioned you ordered on 9/14, did you receive a confirmation letter by chance?
    You can also check your order status here: http://bit.ly/rqEisu
    That is really just right around the corner and time will fly by! I promise.  If you have any other questions, just let us know!
    Thanks,
    MelissaM_VZW
    Follow us on Twitter @vzwsupport

  • TS3988 I do not see the refresh button in Outlook

    I do not see the refresh button in outlook for iCloud anymore so it does not sync with my iPad and iPhone.

    Hi there theguy1176!
    I have an article here that I believe will be able to help you get the music from your iTunes onto your iPhone in iTunes 11. That article can be found right here:
    iTunes 11 for Windows: Set up syncing for iPod, iPhone, or iPad
    http://support.apple.com/kb/PH12313
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • I have a VI and an attched .txt data file. Now I want to read the data from the .txt file and display it as an array in the front panel. But the result is not right. Any help?

    I have a VI and an attched .txt data file. Now I want to read the data from the .txt file and display it as an array in the front panel. But the result is not right. Any help?
    Attachments:
    try2.txt ‏2 KB
    read_array.vi ‏21 KB

    The problem is in the delimiters in your text file. By default, Read From Spreadsheet File.vi expects a tab delimited file. You can specify a delimiter (like a space), but Read From Spreadsheet File.vi has a problem with repeated delimiters: if you specify a single space as a delimiter and Read From Spreadsheet File.vi finds two spaces back-to-back, it stops reading that line. Your file (as I got it from your earlier post) is delimited by 4 spaces.
    Here are some of your choices to fix your problem.
    1. Change the source file to a tab delimited file. Your VI will then run as is.
    2. Change the source file to be delimited by a single space (rather than 4), then wire a string constant containing one space to the delimiter input of Read From Spreadsheet File.vi.
    3. Wire a string constant containing 4 spaces to the delimiter input of Read From Spreadsheet File.vi. Then your text file will run as is.
    Depending on where your text file comes from (see more comments below), I'd vote for choice 1: a tab delimited text file. It's the most common text output of spreadsheet programs.
    Comments for choices 1 and 2: Where does the text file come from? Is it automatically generated or manually generated? Will it be generated multiple times or just once? If it's manually generated or generated just once, you can use any text editor to change 4 spaces to a tab or to a single space. Note: if you want to change it to a tab delimited file, you can't enter a tab directly into a box in the search & replace dialog of many programs like notepad, but you can do a cut and paste. Before you start your search and replace (just in the text window of the editor), press tab. A tab character will be entered. Press Shift-LeftArrow (not Backspace) to highlight the tab character. Press Ctrl-X to cut the tab character. Start your search and replace (Ctrl-H in notepad in Windows 2000). Click into the Find What box. Enter four spaces. Click into the Replace With box. Press Ctrl-V to paste the tab character. And another thing: older versions of notepad don't have search and replace. Use any editor or word processor that does.

  • ITunes sync to Z10 = not right working / mixed songs in wrong playlists

    Hi
    iam totally frustrated:
    I try several weeks since i have this great device, to sync my itunes music to z10.
    But on syncing thru BB Link, my playlists on z10 are totally mixed with the wrong music files.
    On itunes = all is fine sorted
    Transfered to Z10 = some music is not shown in their playlist or playlists are together in one.
    So syncing is not right working. Horrible
    Combination:
    iTunes + Mac
    Z10 with 64GB card -> fromatted inside Z10 (several times)
    So iam not able to get my music with right playlists to the Z10.
    whats wrong here?
    I never experienced with such problems on iPhone or Android based Phones.
    Blackberry! Please fix that!

    Hey uhscale,
    Welcome to the BlackBerry Support Community Forums.
    Thanks for the question.
    We are going to need to gather some BlackBerry Link logs to find out why the playlists are mismatching.  Please contact your network service provider and ask to be transferred to BlackBerry so we can investigate these logs.
    Thank you.
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

  • When opening up Firefox, I kep getting a message: Firefox kept this page from reloading". My home page opens up but some other websites do not open until I hit the "allow" but. How do I remove this or adjust this?

    My home page opens up fine, and there is a message, " Firefox kept this page from automatically reloading", and this same message shows up all the time. When I got to new websites, they will not open until I hit the "allow button" How do I turn this on or off, or adjust it?

    Go to Tools --> Options.
    In the Advanced tab go to "General". Uncheck the check box "Warn me when websites try to redirect or reload the page"

  • Since the os7 update on my iPad, my safari is not right, it only opens one page at a time, crashes when trying to open more, it has no back button. Help

    Since the os7 update on my iPad, my safari is not right, it only opens one page at a time, crashes when trying to open more, it has no back button. Help

    Well, I rebuilt the entire workbook... that was a few months ago and so far, the problem hasn't resurfaced. It really wasn't fun to do, but whatever glitch there was in the file, I eliminated it.
    I think I should mention that I am using Office v.X, NOT Office 2004. I got a new Intel iMac this week and yesterday when I opened up my files, it opened up the test drive (a JOKE of a program if you ask me) Anyway, some of the very minor issues I had with Office v.X were solved in the 2004 version. (When opening up large multi worksheet files without Excel being already opened, the tabs have white text) Anyway, I am still going to wait for the universal version to come out, but it seems that the newer versions may have fewer glitches (as is to be expected)
    At any rate, best of luck to you!

Maybe you are looking for

  • Splitting of G/L account

    Hi all, I  have a buisness requirement that whene we are procuring asset or service item, we need to put the cost center & G/L account in the PO account assignment tab. But at the time of invoice verification(MIRO) or after parking invoice(MIR7), the

  • Been using CC2014 since introduced. The day of AdobeMax and "big announcements" CC app stopped working and will not install.

    I am on a Mac Pro, OS X 10.9.5, 16 GB RAM I have been a fanatical Adobe devotee since 1989, but now I am beginning to see the value in other software packages. All Adobe design programs (AI, PSD, ID) work, except CC app and Adobe Application Manager.

  • Archive Link problem with redundant document names

    Hi all, I have a tricky problem in archive link. I would like to attach some different documents to an HR/PD Organisation unit ( objekttyp pdotype_o ) All customizing works fine but the problem is, all documents attached to one busines object ID have

  • Can't edit connection in JReport

    Sorry if this is in the wrong forum, but I couldn't find a forum for JReport so I'm posting this here. I am using JReport 9.1. I am trying to edit the database connection for the report. However, at the connection information screen, the JDBC URL is

  • Best Practices for viewing home video on my Mac

    Come on people - THERE HAS TO BE A BEST PRACTICE out there for storing and viewing family video!! I'm the typical dad out there taking photos and video of my kids playing soccer, family trips ect ... When I get home I hook my camera up to my MacMini