Adf table columnStretching issue when using with in panel splitter

My Scenario is like this:
I have used adf table with columnStretching to last column of table. And the table is placed at second facet of panelSplitter. On load it covers full area of second facet which is pretty good. When try to collapse panelSplitter, arround 2 pixel of horizontal scrollbar appears at bottom. Even on uncollapse the panelSplitter to original orientation, the extra space remains there which makes horizontal scrollbar with 2 pixel gap for movement at bottom of table.
Is Anyone facing this kind of issue? And how can I solve the issue?
Thank you for your help and responses in advance. YOur help will be very much valuable to me.

Hi Frank,
I am using FF, Chrome and also IE in different compatibility mode. While wrapping with panelCollection it works fine. But the menu bar section and status bar is introduced on panelCollection which I cannot use in my work.
-Robin

Similar Messages

  • SPA941 issues when used with Road Runner Extreme (Time Warner) 30mb/s down, 5 mb/s up.

    I use a SPA941 phone in my home office.
    Until recently, my Internet bandwidth was through Time Warner Road Runner Turbo.  It generally worked well, but when I happened to be sending a large email or uploading a large file while on the phone, my voice would break up due to the upload bandwidth limitation. 
    Because of this, I upgraded to Road Runner Extreme (30mb/s download, 5mb/s upload). Now, although speedtest.net tests show that I have good bandwidth and latency, the mute button flashes red at various times througout the day, and at seemingly random times when I'm on the phone, the other party's voice will start to break up and/or cease completely, as though I have a download bandwidth problem... but a quick speedtest.net check shows that not to be the case.
    I've spent hours (literally) on the phone with Time Warner 3rd level tech support, and they say everything is fine... and the issue must be with the phone.
    I'm using a Ubee DOCSIS 3.0 WLCM combination modem/router
    Connected to the SPA941 via cat5 10/100 Ethernet.
    Has anyone encountered this problem?
    Does anyone have any suggestions?
    Are there any settings on the phone that can be adjusted to help in this situation?
    Thanks,
    David

    Hi David,
    After reviewing your post I see one important piece of information
    "the mute button flashes red at various times througout the day"
    Mute button flashing means the ethernet link went down.  That would be between the phone and the device the ethernet cable is connected to.  The SPA941 is 10mb half duplex device (no pc connection so it didn't need higher capacity).
    It could be an auto negotiation issue with the network device.  Try forcing the link to 10mb half duplex or daisy chain a 3rd party switch/hub and see if the problem goes away.
    One more possibility is IP address DHCP lease renews itself causing the link to go down and up.  You can also try setting static IP address with dns & gateway, etc..  into the SPA941.
    Randy

  • X1 Track Pad issue when used with ultraslim powersuppl​y

    This is a really strange issue,  Anyone else having it?
    X1 I5 160Gb SSD 8Gb Ram  Mix it with a Ultra slim PSU (41R4538) and the track pad starts playing up intermittently.  Unplug the PSU and it works fine.  Use the native PSU and it works fine.       Do you think I have a faulty PSU ?
    Best regards
    Max

    Well I got a replacment ultra slim power supply and I have exactly the same issue.

  • WVC200 Audio issues when used with Monitor software

    I use a number of WVC cameras and when I view them through a browser, the audio works fine.  When I use the Linksys "monitor" software, i have a continuous echo/noise problem.  Is there a fix to this or am i limited to watching them one at a time through a browser??
    Solved!
    Go to Solution.

    Hi.
    These products are being handled by the Cisco Small Business Support Community.
    *If my post answers your question, please mark it as "Accepted Solution".
    *Don't forget to give "Kudos". Thanks!

  • InitializeQTML issue when used with ProRes encoded mov files

    Hi,
    I am using the QuickTime SDK to decode MOV files that are encoded using the ProRes codec.
    Basically this is what i do:
    - InitializeQTML
    - EnterMovies
    - Decode frames
    - ExitMovies
    - TerminateQTML
    The first file that i am loading always works fine.
    However, after i unload that first movie and repeat the same sequence with a second one, i am getting a memory exception in InitializeQTML.
    I am unable to playback 2 movies in a row. Only 1 at a time. I have to exit my application and re-run it.
    The QuickTime SDK and runtime have the latest version.
    Any ideas why?
    Message was edited by: msbox

    I have more details.
    If i comment only the MovieTask() function inside my routine, it stops crashing. But of course, i cannot have my frames rendered.
    By the way, all this sequence is called inside the same thread.
    Any pointers will be greatly appreciated.

  • JTable text alignment issues when using JPanel as custom TableCellRenderer

    Hi there,
    I'm having some difficulty with text alignment/border issues when using a custom TableCellRenderer. I'm using a JPanel with GroupLayout (although I've also tried others like FlowLayout), and I can't seem to get label text within the JPanel to align properly with the other cells in the table. The text inside my 'panel' cell is shifted downward. If I use the code from the DefaultTableCellRenderer to set the border when the cell receives focus, the problem gets worse as the text shifts when the new border is applied to the panel upon cell selection. Here's an SSCCE to demonstrate:
    import java.awt.Color;
    import java.awt.Component;
    import java.awt.EventQueue;
    import javax.swing.GroupLayout;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JTable;
    import javax.swing.border.Border;
    import javax.swing.table.TableCellRenderer;
    import javax.swing.table.TableColumn;
    import sun.swing.DefaultLookup;
    public class TableCellPanelTest extends JFrame {
      private class PanelRenderer extends JPanel implements TableCellRenderer {
        private JLabel label = new JLabel();
        public PanelRenderer() {
          GroupLayout layout = new GroupLayout(this);
          layout.setHorizontalGroup(layout.createParallelGroup().addComponent(label));
          layout.setVerticalGroup(layout.createParallelGroup().addComponent(label));
          setLayout(layout);
        public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
          if (isSelected) {
            setBackground(table.getSelectionBackground());
          } else {
            setBackground(table.getBackground());
          // Border section taken from DefaultTableCellRenderer
          if (hasFocus) {
            Border border = null;
            if (isSelected) {
              border = DefaultLookup.getBorder(this, ui, "Table.focusSelectedCellHighlightBorder");
            if (border == null) {
              border = DefaultLookup.getBorder(this, ui, "Table.focusCellHighlightBorder");
            setBorder(border);
            if (!isSelected && table.isCellEditable(row, column)) {
              Color col;
              col = DefaultLookup.getColor(this, ui, "Table.focusCellForeground");
              if (col != null) {
                super.setForeground(col);
              col = DefaultLookup.getColor(this, ui, "Table.focusCellBackground");
              if (col != null) {
                super.setBackground(col);
          } else {
            setBorder(null /*getNoFocusBorder()*/);
          // Set up our label
          label.setText(value.toString());
          label.setFont(table.getFont());
          return this;
      public TableCellPanelTest() {
        JTable table = new JTable(new Integer[][]{{1, 2, 3}, {4, 5, 6}}, new String[]{"A", "B", "C"});
        // set up a custom renderer on the first column
        TableColumn firstColumn = table.getColumnModel().getColumn(0);
        firstColumn.setCellRenderer(new PanelRenderer());
        getContentPane().add(table);
        pack();
      public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
          public void run() {
            new TableCellPanelTest().setVisible(true);
    }There are basically two problems:
    1) When first run, the text in the custom renderer column is shifted downward slightly.
    2) Once a cell in the column is selected, it shifts down even farther.
    I'd really appreciate any help in figuring out what's up!
    Thanks!

    1) LayoutManagers need to take the border into account so the label is placed at (1,1) while labels just start at (0,0) of the cell rect. Also the layout manager tend not to shrink component below their minimum size. Setting the labels minimum size to (0,0) seems to get the same effect in your example. Doing the same for maximum size helps if you set the row height for the JTable larger. Easier might be to use BorderLayout which ignores min/max for center (and min/max height for west/east, etc).
    2) DefaultTableCellRenderer uses a 1px border if the UI no focus border is null, you don't.
    3) Include a setDefaultCloseOperation is a SSCCE please. I think I've got a hunderd test programs running now :P.

  • HT3964 noisey dvd drive when using with macbook pro retina?

    I bought a new macbook pro retina 15" and used the apple external dvd drive to watch a movie and the drive was extremely loud and vibratory - to thr point of nearly not able to hear the movie. I then tried the same drive with the the same dvd with a macbook air and it did not have this issue. Anyone know how to solve the sound issue when using the dvd drive with a macbook pro retina 15"?  Thank you.

    Thank you - it is the DVD driver I purchased over a year ago with a Mac book air - I wondered whether they have since updated the DVD driver and therefore wondered about compatibility. I also wondered whether it had to do with the fact that I was on battery power when this happened any further thoughts appreciated.

  • Test runner freezing when used with Dynamics CRM (and other apps) - Both applications freeze and never come back...

    We are trying to use test runner with dynamics CRM.
    MS Dynamics CRM will freeze and will not respond (even after 10 - 15 minutes). When this happens, the test manager will either freeze or a message will apear saying "waiting for application under test".
    We are not recording action recordings...This makes using test manager impossible. It happens consistently, starting with slowing the PC down (mouse moving slowly, slow to load in new screens, drop downs etc) eventually leading to the app freezing.
    Tried on windows xp, windows 7 etc on various specs of pcs.

    I am experiencing this same issue with
    Test runner freezing when used with Dynamics CRM. I notice this was first posted in June of 2010 and so far no
    resolution? I was wondering if it could be related to memory issues? Do you have any troubleshooting ideas? The
    issue for me seems to be sporadic and I can't
    reproduce it every time.
    The message I get is "waiting on application under test".
    DLM

  • Odd issue when using UDT (user defined type)

    Hi all,
    11g.
    I ran into an odd issue when using UDT, I have these 4 schemas: USER_1, USER_2, USER_A, USER_B.
    Both USER_1 and USER_2 have an UDT (actually a nested table):
    CREATE OR REPLACE TYPE TAB_NUMBERS AS TABLE OF NUMBER(10)USER_A has a synonym points to the type in USER_1:
    create or replace synonym TAB_NUMBERS for USER_1.TAB_NUMBERS;USER_B has a synonym points to the type in USER_2:
    create or replace synonym TAB_NUMBERS for USER_2.TAB_NUMBERS;Both USER_A and USER_B have a procedure which uses the synonym:
    CREATE OR REPLACE PROCEDURE proc_test (p1 in tab_numbers)
    IS
    BEGIN
      NULL;
    END;And in the C# code:
    OracleConnection conn = new OracleConnection("data source=mh;user id=USER_A;password=...");
    OracleCommand cmd = new OracleCommand();
    cmd.Connection = conn;
    cmd.CommandText = "proc_test";
    cmd.CommandType = CommandType.StoredProcedure;
    OracleParameter op = new OracleParameter();
    op.ParameterName = "p1";
    op.Direction = ParameterDirection.Input;
    op.OracleDbType = OracleDbType.Object;
    op.UdtTypeName = "TAB_NUMBERS";
    Nested_Tab_Mapping_To_Object nt = new Nested_Tab_Mapping_To_Object();
    nt.container = new decimal[] { 1, 2 };
    op.Value = nt;
    ......This code works fine, but it raises an error when I change the connection string from USER_A to USER_B, the error says:
    OCI-22303: type ""."TAB_NUMBERS" not foundInterestingly, if I change op.UdtTypeName = "TAB_NUMBERS"; to op.UdtTypeName = "USER_2.TAB_NUMBERS", the error is gone, and everything works fine.
    Anyone has any clues?
    Thanks in advance.

    Erase and reformat the ext HD. Then, redo the SuperDuper! backup.

  • Camera is hanging when using with flash

    Hi Lenovo Team,
    In lenovo vibe x2, camera is hanging when using with flash.Getting "Lenovo snapit isnt responding" error and screen hanged for sometime.after that when tried to open camera "Cannt cannot to camera " error is coming till when restart the phone.
    Even tried Factory reset and software update.
    Please provide the solution for the above issue.
    Thanks,

    Hi vijayprabhu,
    I just tested the X2 however am not having the issue. I set flash to always on then took a picture using SnapIt however its fine.
    Please check if you have the latest firmware S125.
    Check out the Community Knowledge Base for hints and tips.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    X240 | 8GB RAM | 512GB Samsung SSD

  • Bluetooth issues when using smartwatch on the z1s

    I'm having some Bluetooth issues when using my smartwatch. I usually use my z1s with my car radio via Bluetooth to listen to music and for making calls. Now that I got a sony smartwatch I always got problems with the calls. It looks like that the Bluetooth turns off during the call when I'm using the smartwatch. I already tried by deleting and pairing again the z1s, but nothing works. Not sure if maybe the z1s does not support the smartwatch and the care radio Bluetooth connection at the same time. However it works fine when playing music! The problem is just with the calls. This never happens before I got the smartwatch.

    I have the Tmobile Z1s and a SW2 and have the same issues with multiple devices:
    1) Bose Soundlink Mini
    2) Sony MBR-100
    3) My car's bluetooth
    4) Ford Sync
    5) Sony SBH20
    6) Motorola S305
    If the phone connects to the A2DB device, it will typically play fine for several minutes. Then, audio will drop out. If I do nothing, after several minutes my watch will vibrate to show it has disconnected. Sometimes audio then comes back, and sometimes it doesn't.
    Sometimes my phone will not connect to my car. Then, if I can get it to connect, it will only allow for phone audio, not media audio. 
    This issue has been on (2) Z1s's with the SW2. The first I returned due to touch screen issues, which the second one also has. All of the devices above worked perfectly fine with my Xperia Z, Galaxy S2, HTC One, etc. The Xperia Z and the SW2 never had any problems.
    Honestly, this phone has been incredibly frustrating. If the upcoming updates for either the SW2 or Z1S don't fix this issue, I'm going to return it and get something else.

  • I have created a PDF with mp3 audio clips, the file works on PC's with audio playback (WIndows 7, 8 ) however the audio does not play when hosted on a website or an ipad/tablet computer or smart phone when used with PDF reader

    I have created a PDF with mp3 audio clips, the file works on PC's with audio playback (WIndows 7, 8 ) however the audio does not play when hosted on a website or an ipad/tablet computer or smart phone when used with PDF reader

    adobe42135678 wrote:
    the audio does not play when hosted on a website...
    When viewing in what browser?

  • Does resteasy API have class loader issues when using via OSGi

    Does resteasy API have class loader issues when using via OSGi

    Hi Scott,
    THis isnt an answer to ur Question, but could u tell me which jar files are needed for the packages:
    com.sap.portal.pcm.system.ISystems
    com.sap.portal.pcm.system.ISystem
    and under which path I coul dfind them.
    Thnx
    Regards
    Meesum.

  • ExecuteNonQuery doesnt return number of rows affected when used with PL/SQL

    ExecuteNonQuery doesn't return number of rows affected when used with PL/SQL but returns -1. The documentation says ExecuteNonQuery method of OracleCommand returns the number of raws affected but when used with PL/SQL, it returns -1 even the update statement successfully executes and affects multiple records with no exeptions thrown.
    However, if ExecuteNonQuery is used with update sql statement in the asp.net code it returns number of rows affected correctly. Does anybody know why ExecuteNonQuery behaves like this?
    I am using ODP.NET that comes with Oracle Client 11g. The version is 2.111.6.20 of ODP.NET, Oracle database server is 10g.
    Marat

    You can get the rowcount in the stored procedure via SQL%ROWCOUNT and then pass it out as a parameter.
    For example:
    SQL> create or replace procedure updatesal(v_deptno in number, v_rowsaff out number) as
      2  begin
      3  update emp set sal = sal * 5 where deptno = v_deptno;
      4  v_rowsaff := SQL%ROWCOUNT;
      5  end;
      6  /
    Procedure created.Cheers

  • Quicktime Player with the magic mouse, when used with a bug -

    On 10.7 Lion, Quicktime Player with the magic mouse, when used with a bug …
    Quicktime Player will not respond, but use the USB mouse with no problem

    Message was edited by: b j t

Maybe you are looking for

  • Adobe bridge and windows vista

    I am testing photshop in vista but bridge wont open any ideas

  • Costing Error while releasing the document to accounts in VF02

    Hi Experts, We have an issue with Costing while creating accounting document in VF02 We have implimented new plant for the existing company code.  We had few sales orders open in existing plant.  There are few sales orders which were open in existing

  • How to format USB flash drive?

    I recently received a USB flash drive at a traveling covention. It has two partitions and one is unwritable and is filled with travel brochurs etc etc. I was wondering if it was possible to reformat the whole thing back into 1 partition. I already tr

  • My ipad 2. Keeps turning off by itself

    While using the ipad 2 , it periodically goes to a black screen , and the slide to unlock pops up?????

  • Ipod touch with white non responsive screen. Help

    My son's Ipod touch was frozen and we rebooted it but that didn't help so I plugged it in to itunes and it now has a white screen and it wont do anything. Can anyone help with this?