Combobox in jtable two tab problem

Hi all,
If i am using combobox for one of the columns of jtable with custom editor and renderer, it needs two tab for navigation between the cells.
How can i make it as 'one tab navigation'. Even i tried with 'isManagingfocus() return true' but...no effect.
thanx in advance.
S.A.Radha.

here I'm giving a simple sample code. Refer this..
import javax.swing.*;
import java.awt.event.*;
import javax.swing.event.*;
import javax.swing.table.*;
import java.awt.*;
public class Class1 extends JFrame {
JScrollPane jScrollPane1 = new JScrollPane();
JTable editableTable1 = new JTable(3, 3);     
public Class1() {
try {          
JComboBox c = new JComboBox();
c.setEditable(true);
c.addItem("a");
c.addItem("b");
DefaultCellEditor cellEditor = new DefaultCellEditor(c);
TableColumn tc = editableTable1.getColumnModel().getColumn(0);
tc.setCellEditor(cellEditor);
this.getContentPane().setLayout(null);
jScrollPane1.setBounds(new Rectangle(25, 19, 330, 180));
this.getContentPane().add(jScrollPane1, null);
jScrollPane1.getViewport().add(editableTable1, null);
addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent we) {
System.exit(0);
} catch(Exception e) {
System.out.println("Exception in Class1:"+e);
public static void main(String[] args) {
Class1 class1 = new Class1();
class1.setSize(400, 400);
class1.setVisible(true);

Similar Messages

  • Problem with Two tab canvases in a form

    Hi Experts,
    I am working on Oracle forms 10g (OS: Windows7) from last 1 year. I have got a requirement to create a form with one tab canvas CAN_TAB (with 2 tab pages) in main page and a pop up tab canvas ASN_SPLIT_TAB(with 2 tab pages). Now the problem is whenever we click on tabs it will fire WHEN-TAB-PAGE-CHANGED trigger and executes the complete code. As a result even if i click a tab page in CAN_TAB canvas it will fire for ASN_SPLIT_CANVAS as well. Check the below code (WHEN-TAB-PAGE-CHANGED). Now i have to differentiate between two tab canvases so that i can use IF-ELSE statement to overcome this problem. Please share your useful comments.
    BEGIN
    Lv_Toppage := Upper(Get_canvas_property('CAN_TAB',Topmost_Tab_page));
      if Lv_Toppage = 'LINES' THEN 
      go_item('shipment_summary.shipment_reference');
      show_view('CAN_LINES');
      show_view('CAN_SCROLL');
      elsif Lv_Toppage = 'ATTRIBUTES' THEN
      go_item('shipment_summary.shipment_reference');
      show_view('CAN_ATT' );
      elsif Lv_Toppage = 'AUDIT' THEN
      go_item('shipment_summary.confirmedby');
      show_view('AUDIT');
      end if;
    Lv_Toppage := Upper(Get_canvas_property('ASN_SPLIT_TAB',Topmost_Tab_page));
      IF Lv_Toppage = 'INVOICE_SPLIT' THEN
      show_view('ASN_SPLIT_STACK');
      go_item('ASN_INBOUND_CATEGORY_SUMMARY.brand_representitive');
      ELSIF Lv_Toppage = 'SUPPLIER' THEN
      go_item('CONTROL.cancel_but');
      END IF;
      hide_view('ASN_SPLIT_STACK');
    END;

    Thanks Craig. You made it happen..!! Below code is working fine for me.
    IF :SYSTEM.tab_new_page = 'LINES' THEN
      go_item('shipment_summary.shipment_reference');
      show_view('CAN_LINES');
      show_view('CAN_SCROLL');
    ELSIF :SYSTEM.tab_new_page = 'ATTRIBUTES' THEN
      go_item('shipment_summary.shipment_reference');
      show_view('CAN_ATT' );
    ELSIF :SYSTEM.tab_new_page = 'INVOICE_SPLIT' THEN
    END IF;

  • Problem: Two Tab Sets for one page

    Hello everyone. I have two tab sets and each tab set has one common tab, for example an "About" tab that redirects the user to page 25 when clicked. The tab set works perfectly for the first tab set but when I'm in the second tab set and I click "About" the other tabs change to the first tab set.
    Does anyone know how to solve this problem without having to create multiple "About" pages?

    Hi Nithya,
    My requirement is to have two main windows in the same page. For each line item it is triggering a new page. In the first page both the windows are displayed as expected but in the second page only the first main window (MAIN00) is getting triggered and the second main window (MAIN01) is not triggered.
    Output got :
    page1:
    MAIN00
    a
    MAIN01
    a
    page2:
    MAIN00
    b
    MAIN01
    (blank)
    Expected output:
    page1:
    MAIN00
    a
    MAIN01
    a
    page2:
    MAIN00
    b
    MAIN01
    b

  • Problem of selecting combobox in JTable!!

    I click comboBox in jtable and choose one item
    then move mouse away
    and then click the comboBox again
    It turns out to be strange:
    the selectedItem of the comboBox changes the first item at once
    I refered to the demo "TableRenderDemo.java" in http://java.sun.com/docs/books/tutorial/uiswing/components/example-swing/TableRenderDemo.java
    I just wanna do things like that
    but for some unknown reasons,I fail
    I compared two codes but found nothing

    here I'm giving a simple sample code. Refer this..
    import javax.swing.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    import javax.swing.table.*;
    import java.awt.*;
    public class Class1 extends JFrame {
    JScrollPane jScrollPane1 = new JScrollPane();
    JTable editableTable1 = new JTable(3, 3);     
    public Class1() {
    try {          
    JComboBox c = new JComboBox();
    c.setEditable(true);
    c.addItem("a");
    c.addItem("b");
    DefaultCellEditor cellEditor = new DefaultCellEditor(c);
    TableColumn tc = editableTable1.getColumnModel().getColumn(0);
    tc.setCellEditor(cellEditor);
    this.getContentPane().setLayout(null);
    jScrollPane1.setBounds(new Rectangle(25, 19, 330, 180));
    this.getContentPane().add(jScrollPane1, null);
    jScrollPane1.getViewport().add(editableTable1, null);
    addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent we) {
    System.exit(0);
    } catch(Exception e) {
    System.out.println("Exception in Class1:"+e);
    public static void main(String[] args) {
    Class1 class1 = new Class1();
    class1.setSize(400, 400);
    class1.setVisible(true);

  • Addiing ComboBox in JTable

    Can any one help mee how to add combobox in jtable i am using Abstracttablemodel.

    yes these the code where i am setting my editor and combobox
    import java.sql.ResultSet;
    import java.sql.*;
    import java.util.*;
    import javax.swing.JTable;
    import javax.swing.table.TableCellRenderer;
    import javax.swing.*;
    import javax.swing.table.*;
    import java.awt.*;
    public class clsCustMast extends clsMSGen{
        String strQuery,
                 querySrch1,
                 querySrch2;
        String strTab1Rec;
        String strTableName;
        String []strTmp;
        public clsValidate val;
        public boolean flgInsrtTab1,
                           flgInsrtTab2,
                           flgErr;
        public String strCmbFrom,
                             strCmbTo;
       /* public JComboBox cmbRgn,
                              cmbCntry;*/
        int        intSlctdTab;     
        private int intCol,
                        rowCntTab1,
                        rowCntTab2;
         final static int CNS_TAB1 = 0;
         final static int CNS_TAB2 = 1;
         final static String CNS_MANDT = "1";
         final static boolean CNS_FALSE = false;
         final static boolean CNS_TRUE = true;
         final static String strUserPassword  = "manager";          
        public void disp(){
            super.disp();
            flgInsrtTab1 = CNS_FALSE;
            flgInsrtTab2 = CNS_FALSE;
            // to get all region ids from the  tble T_regionmast and populate it in the cmbReg to be displayed in the grid
            populateRegionCntryCmb();
            // to get all region ids from the  tble T_countrymast and populate it in the cmbCntry to be displayed in the grid
            //populateCntryCmb();
            intCol = 0;
            strQuery = "select a.f_custid,a.f_postcd,a.f_faxno,a.f_phoneno,a.f_regionid," +
                      " a.f_cntryid, a.f_delflag from t_custmast a,t_custtran b" +
                      " where a.f_custid = b.f_custid" +
                      " and b.f_langid = 'EN'";
            //System.out.println(strQuery);
            ResultSet Tab1Data = prcQuery(strQuery);
            try{
                 ResultSetMetaData rmdTab1Dt = Tab1Data.getMetaData();
                 intCol = rmdTab1Dt.getColumnCount();
                 ++intCol;
                 strTmp = new String[intCol+1];
                 //JButton btn1;
                 while (Tab1Data.next()){
                      String [] record = new String[intCol];
                      //Object [] record = new Object[intCol];
                      //btn1 = new JButton("C");
                      record[0] = new JButton("B").toString();
                      //record[0] = new Boolean(false);
                      for(int i=1; i<intCol; i++)
                     record= Tab1Data.getString(i);
              if (i==1)
    cmbFrom.addItem(record[i]);
    cmbTo.addItem(record[i]);
    // System.out.println(record[i]);
    model1.addRow(record);
    model1.fireTableChanged(null);      
    catch(SQLException ex)
         System.out.println("Error1");
    ex.printStackTrace();
    strQuery = "select f_langid, b.f_custname, f_city, f_address " +
              "from t_custmast a ,T_custtran b where " +
              "a.f_custid = b.f_custid" +
                        " and b.f_langid = 'EN'";
    ResultSet Tab2Data = prcQuery(strQuery);
    try{
    intCol = 0;     
    ResultSetMetaData rmdTab2Dt = Tab2Data.getMetaData();
    intCol = rmdTab2Dt.getColumnCount();
    while (Tab2Data.next()){
    String [] record = new String[intCol];
    for(int i=0; i<intCol;i++)
    record[i]=Tab2Data.getString(i+1);
    model2.addRow(record);
    model2.fireTableChanged(null);
    catch(SQLException ex)
         System.out.println("Error2");
    ex.printStackTrace();
    System.out.println(intCol);
    //Connect the database and Returns the resultset corresponding to passed query     
         public ResultSet prcQuery(String strQuery){
              ResultSet resultQuery = dbCon.doQuery(strQuery);
              return resultQuery;
         public void populateRegionCntryCmb(){
              cmbRgn = new JComboBox();
              cmbCntry = new JComboBox();
              String queryRgn = "select f_regionid,f_cntryid from t_regionmast";
              ResultSet rsRgn = prcQuery(queryRgn);
              //String[] items = { "one", "two", "three", "four" };
              try{
                   while(rsRgn.next()){
                        //cmbRgn.addItem(rsRgn.getString(1));
                        cmbCntry.addItem(rsRgn.getString(2));
                        //System.out.println(rsRgn.getString(1)+ " " + rsRgn.getString(2));
              }catch(SQLException ex)
    {             System.out.println("Error in region cd retrieve");
    ex.printStackTrace();
              System.out.println(cmbCntry.getItemAt(0));
              //cmbCntry = new JComboBox(items);
              cmbCntry.setEditable( false );
              DefaultCellEditor dceCmbCntry = new DefaultCellEditor( cmbCntry );          
              info_table.getColumnModel().getColumn(6).setCellEditor(dceCmbCntry);
              // Set the first columm to use a ComboBox as a renderer
              info_table.getColumnModel().getColumn(6).setCellRenderer(new clsComboBoxRenderer());
         public void populateCntryCmb(){
              cmbCntry = new JComboBox();
              String queryCntry = "select f_reionid,f_cntryid from t_regionmast";
              ResultSet rsCntry = prcQuery(queryCntry);
              try{
                   if(!rsCntry.next()){
                        System.out.println("No Records in Country Master Table");
                   }else{
                        while(rsCntry.next()){
                             cmbCntry.addItem(rsCntry.getString(1));
                             //System.out.println(rsCntry.getString(1));
              }catch(SQLException ex)
         System.out.println("Error in region cd retrieve");
    ex.printStackTrace();
              System.out.println(cmbCntry.getItemAt(1));
              cmbCntry.setEditable( false );
              DefaultCellEditor dceCmbCntry = new DefaultCellEditor( cmbCntry );          
              info_table.getColumnModel().getColumn(6).setCellEditor(dceCmbCntry);
              // Set the first columm to use a ComboBox as a renderer
              info_table.getColumnModel().getColumn(6).setCellRenderer(new clsComboBoxRenderer());
         class clsComboBoxRenderer extends JComboBox implements TableCellRenderer
              public Component getTableCellRendererComponent
                        JTable info_table, Object value, boolean isSelected,
                        boolean hasFocus, int row, int column){
                             removeAllItems();
                             addItem( value );
                             return this;     
         public void add()
              String strAdd1[],
                   strAdd2[];
              intSlctdTab = tabbedPane.getSelectedIndex();
              if ( intSlctdTab == CNS_TAB1){
                   if ( flgInsrtTab1 == CNS_FALSE && flgInsrtTab2 == CNS_FALSE){
                        rowCntTab1 = model1.getRowCount();
                        //add a new row for both tabs when the add button is pressed while tab1 is selected.
                        //Add a new row for the tab1
                        strAdd1 = new String[8];
                        model1.addRow(strAdd1);
                        model1.fireTableChanged(null);
                        flgInsrtTab1 = CNS_TRUE;
                        //Add a new row for the tab2
                        strAdd2 = new String[4];
                        model2.addRow(strAdd2);
                        model2.fireTableChanged(null);
                        flgInsrtTab2 = CNS_TRUE;
                   }else{
                        lblStatus.setText("Save the Records and then Add New one");
              }else if(intSlctdTab == CNS_TAB2){
                   if ( flgInsrtTab2 = CNS_FALSE){
                        rowCntTab2 = model2.getRowCount();
                        //When a add button is pressed while selecting the 2nd tab add new row only to 2nd tab
                        strAdd2 = new String[4];
                        model2.addRow(strAdd2);
                        model2.fireTableChanged(null);
                        flgInsrtTab2 = CNS_TRUE;
                   }else{
                        lblStatus.setText("Save the Records and then Add New one");
         public void save()
              // Decalrion for varaibles in the TAB1
              String strCustId,
                   strDelFlg,
                   strPostCd,
                   strFaxNo,
                   strPhNo,
                   strRgnId,
                   strCntryId;
    boolean flag;                              
              //Assigning the values of the selected row to the corresponding fields
    strCustId = model1.getValueAt(rowCntTab1,1).toString();
    strPostCd = model1.getValueAt(rowCntTab1,2).toString();
    strFaxNo = model1.getValueAt(rowCntTab1,3).toString();
    strPhNo = model1.getValueAt(rowCntTab1,4).toString();
    strRgnId = model1.getValueAt(rowCntTab1,5).toString();
    strCntryId = model1.getValueAt(rowCntTab1,6).toString();
         strDelFlg = model1.getValueAt(rowCntTab1,7).toString();
         flgErr = CNS_FALSE;
         //Validation for mandatory field F_CUSTID
         flag = clsValidate.mandt(CNS_MANDT,strCustId);
    if (flag == CNS_FALSE){
              lblStatus.setText("Please Enter Values for Cust Id Field");
              flgErr = CNS_TRUE;
    //Validation for Mandatory field F_DELFLAG
    flag = clsValidate.mandt(CNS_MANDT,strDelFlg);
    if (flag == CNS_FALSE){
              lblStatus.setText("Please Enter Values for Delete Flag Field");
              flgErr = CNS_TRUE;
    // if no error occurs process the insert process
    if (flgErr == CNS_FALSE){
              String sqlInsrtT1;
              sqlInstrtT1 = "Insert into t_custmast'" + ( "'" +
                             " f_custid,f_delflag,f_postcd,f_faxno,f_phoneno," +
                                  "f_regionid,f_cntryid '" +) "'" +
                                  "(strCustId,strDelFlg,strPostCd,strFaxNo,strPhNo,strRgnId,strCntryId)";
              strTableName = "t_custmast";
         //     sqlInsrtT1 = "insert into t_custmast*/
         /*     StringBuffer InsertSQLT1 = new StringBuffer();
              strTableName = "t_custmast";
              InsertSQLT1.append("INSERT INTO " + strTableName );
              InsertSQLT1.append(" VALUES (");
                   int colCntTab1 = model1.getColumnCount();
                   System.out.println(colCntTab1);
              // for (int i=0; i < colCntTab1-1; i++) {
                   int i = 0;
                   System.out.println("Value at 2,1 " + model1.getValueAt(2,7));
                   /* while(i < colCntTab1){
                   System.out.println(" "+ i);
                   //System.out.print( model1.getValueAt(2,i));
              //     InsertSQLT1.append(model1.getValueAt(rowCntTab1,i));
                   InsertSQLT1.append(model1.getValueAt(2,i));
                   if ( i != colCntTab1-1) {
                        InsertSQLT1.append(",");     
                   }else{
                        InsertSQLT1.append(");");
                   i++;
              //InsertSQLT1.append(");");
              // System.out.println( model1.getValueAt(rowCntTab1,7));
    System.out.println(InsertSQLT1.toString());*/
    public void delete(){}
    public void cancel(){}
    public void goTran(){}
    public void Search(){
         intSlctdTab = tabbedPane.getSelectedIndex();
         if (intSlctdTab == CNS_TAB1 ){
              System.out.println(intSlctdTab);
    querySrch1 = "select a.f_custid,a.f_postcd,a.f_faxno,a.f_phoneno,a.f_regionid,"
         + " a.f_cntryid, a.f_delflag from t_custmast a,t_custtran b"
                        + " where a.f_custid = b.f_custid"
                        + " and b.f_langid = 'EN'"
                        + " and a.f_custid between '" + strCmbFrom + "'"
                        + " and '" + strCmbTo + "'";
         searchCondnTab1(querySrch1);
         intSlctdTab = 3;
    if ( intSlctdTab == CNS_TAB2 ){      
    querySrch2 = "select f_langid, b.f_custname, f_city, f_address"
                        + " from t_custmast a ,T_custtran b "
                        + " where a.f_custid = b.f_custid"
                        + " and b.f_langid = 'EN'"
                        + " and a.f_custid between '" + strCmbFrom + "'"
                        + " and '" + strCmbTo + "'";                     
              searchCondnTab2(querySrch2);
              intSlctdTab = 3;
    public void cmbFromSrch(){
         strCmbFrom = ((String)cmbFrom.getSelectedItem()).trim();
         System.out.println("Combo1 : " + strCmbFrom);
    public void cmbToSrch(){
         strCmbTo = ((String)cmbTo.getSelectedItem()).trim();
         System.out.println("Combo2 : "+ strCmbTo);
         public void searchCondnTab1(String querySrch){
              System.out.println("Tab1 : " + querySrch);
    ResultSet rsSrchTab1 = prcQuery(querySrch);
    try{
         ResultSetMetaData rmdSrchTab1 = rsSrchTab1.getMetaData();
         intCol = rmdSrchTab1.getColumnCount();
         //increase the column count by one for the button
         ++intCol;
         //remove all datas before fetching records according to the conditions
         model1.vctData.removeAllElements();
         //adding records to the vector after fetching the records
         while (rsSrchTab1.next()){
              String [] record1 = new String[intCol];
              record1[0] = new JButton("B").toString();
              for(int i=1; i<intCol;i++)
    record1[i]= rsSrchTab1.getString(i);     
    model1.addRow(record1);
    model1.fireTableChanged(null);      
    catch(SQLException ex)
         System.out.println("Error3");
    ex.printStackTrace();
         public void searchCondnTab2(String querySrch){
              System.out.println("Tab2 : " + querySrch);
              ResultSet rsSrchTab2 = prcQuery(querySrch);
         try{
         ResultSetMetaData rmdSrchTab2 = rsSrchTab2.getMetaData();
         intCol = rmdSrchTab2.getColumnCount();
         //remove all datas before fetching records according to the conditions     
         model2.vctData.removeAllElements();
         //adding records to the vector after fetching the records
         while (rsSrchTab2.next()){
         String [] record2 = new String[intCol];
         for(int i=0; i<intCol;i++)
         record2[i]= rsSrchTab2.getString(i+1);
         model2.addRow(record2);
         model2.fireTableChanged(null);     
         catch(SQLException ex)
              System.out.println("Error4");
         ex.printStackTrace();
         public static void main(String args[]){
         clsCustMast objCust = new clsCustMast();
         objCust.strUserid = "SIVAGURU";
         objCust.strTab1Name = "Basic";
         objCust.strTab2Name = "Details";
         objCust.strTitle = "Customer Maintenance";
              objCust.Tran_code = "XD01";
              objCust.strClsId = "clsCustMast";
              objCust.strLangid = "EN";
         objCust.connectDbase();
         objCust.disp();

  • Firefox 12 is very slow to load pages and if two tabs are opening it lags.

    Firefox 12 is very slow to load pages and if two tabs are opening it lags. I've tried everything (e.g virus, defrag, I've created a new profile in "run", etc). I've had my router/line etc all checked and after 2 weeks of cleaning/testing etc its all pointing to Firefox as the problem. Please help as it's driving me nuts.

    I have the exact same problem.
    Not only does it load pages very slowly, sometimes the page will stop for a good 45 seconds and stop loading, only to finish it much later.
    Something is wrong with Firefox 12, it shouldn't be this slow.
    How is that each version is progressively worse than the one before it?.
    Stop releasing so many versions Mozilla, release one that works and build from there.

  • Firefox opens automatically with two tabs, one of which will never close and can't be used, how can I fix this issue?

    I have a Macbook Pro running 10.6.8 and Firefox 5.0.1
    I have had this issue for a while and was hoping that the newest release would solve my problem, it didn't. I looked online for solutions, none of which fixed the issue
    *Some pointed the finger at the extension Invisible Hand, which I never had.
    *Some suggested putting Firefox into safe mode, this solves the problem, but since it stops me from installing any extensions this is not a workable solution.
    *It was advised that I create a new profile, which I tried, this did absolutely nothing, the blank page appeared again after a short period of time and still can't be closed or clicked on, and this was before I added any add-ons. Which leads me to believe that the issue lies with Firefox.
    Though on a side note when I quit Firefox, with only my current tab and the "tab that can't be closed" still open, Firefox notices that there are two tabs open and warns me that I am going to be closing both. The only work around I have found is to set the "tab that can't be closed" as an app tab for the current session, but when I open Firefox the next time, the app tab which was the "tab that can't be closed" can now be closed and a new "tab that can't be closed" appears as if it were a new blank tab, just like every other time I open Firefox.

    I started in safe Mode. I have the default theme. Starting in safe mode still gave me the same problem. I went back to the normal Firefox and still had the same problem. Yesterday I restarted my computer for 11 Windows updates. I am not going to spend all day starting and restarting my computer and removing my History and whatever else. Firefox should have a direct contact to it's users, to assist them instead of having their users work for them as forum responders and trouble shooters. This has already taken up way too much of my time.
    I will say in normal Firefox the additional NEW TAB had no URL in it, but it did have the 12 icons on the page. In Safe Mode it had a URL that began with Chrome and it had a blank page, it didn't have the 12 icons as in normal mode. I don't have anything Chrome on my computer.

  • Firefox freezes for up to a minute when I have two tabs open and running a video and a flash game. Why?

    Firefox freezes for up to a minute when I have two tabs open, one playing a YouTube video, the other with a flash game running, and the screen shows the contents of both tabs, one superimposed on the other. If I have other tabs open, they also appear as visual garbage on the same screen. After the freeze, everything semi-works, starting and stopping, with long frozen hangs.The frequency of this problem is increasing and greatly reduces Firefox's operating capacity. I am using Firefox 5.0 on a Windows Vista desktop made by Hewlett-Packard. I have cleared the caches and the problem persists, and I can't find any online help to explain why this is happening. I don't recall it happening with a previous version of Firefox.

    Hello jesterabk, '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • Ctrl-F4 closes two tabs, not one

    Ctrl-F4 closes two tabs, not one. Ctrl-W is working fine. This is possibly due to a plugin / extension, as I have updated them / installed new themes recently.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).<br />
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.<br />
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.<br />
    You have to close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • AppleTV syncs with iTunes, but only two tabs - summary+i photos

    The problem started when my hardrive on my iMac stopped working. My apple TV was working fine and I continued to buy some movies while my iMac was being fixed. I had my iMac hardrive replaced and I had a backup of my itunes music folder.
    Now when I tried to re-sync apple tv with my iMac, i typed in the 5 digit code fine and apple TV pops up in the device list. but when I click on the device in itunes, I only see two tabs for the device. Summary - which is mostly blank, and Photos - which allows me to select the folders I want to include. What happened to all the other options, TV, Movies, Podcasts etc. How can I get it all back?
    Thanks for any suggestions.
    Tony

    Sounds like you are set up for streaming only, See This
    Settings/computers, select 'connect to itunes.....' (not shared library), you may need to unlink your current set up first.

  • Automatically launches two tabs at startup

    Every time I launch Firefox or a popup window launches it automatically has two tabs how can I fix it to where it is just one again

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings and disables most add-ons (extensions and themes).
    ''(If you're using an added theme, switch to the Default theme.)''
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu by clicking on the '''Restart with Add-ons Disabled...''' menu item:<br>
    [[Image:FirefoxSafeMode|width=520]]<br><br>
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.
    Thank you.

  • FF always closes two tabs when I only want ONE closed!

    Every time I want to close a single tab, Firefox states 'you are about to close two tabs'. I DO NOT WANT to close two, only one! Is there any way to set this? it is very irritating.
    Thank you.
    Also, below my question here I am about to post, you have my installed plug-ins listed. WHY are some of them underlined in red??

    That issue can be caused by an extension that isn't working properly.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode

  • Two tabs reload every time Firefox 3.6.2 starts, even if they were previously closed

    Starting today, I have two tabs that reload every time Firefox is started. I've tried clearing the history, closing the tabs and restarting, and simply rebooting the system. Upgrading Firefox is not an option, as the newer versions don't work properly with some of the websites I frequent.
    As it worked fine until today, and the copy on my USB drive still works fine, I assume it's a setting wrong. I'd copy the USB version over to my PC, but then I'd have to reset all of my bookmarks.
    Thank you.

    See these articles for some suggestions:
    * https://support.mozilla.com/kb/Firefox+has+just+updated+tab+shows+each+time+you+start+Firefox
    * https://support.mozilla.com/kb/How+to+set+the+home+page - Firefox supports multiple home pages separated by '|' symbols
    * http://kb.mozillazine.org/Preferences_not_saved
    It is also possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the files sessionstore.js [2] and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost, so you will have to create them again (make a note or bookmark them).
    See also:
    * [1] http://kb.mozillazine.org/Session_Restore
    * [2] http://kb.mozillazine.org/sessionstore.js

  • Alignment with Tabs Problem

    Hi friends,
    i have an CRM application where the item alignment and the tabs is creating a problem for me.
    Instead of me to elaborate, i can show you in my page in apex.oracle.com, so that you can understand my problem clearly in the page itself. These are the login credentials
    http://apex.oracle.com/pls/apex
    Workspace: mini_ws
    username: [email protected]
    password: mini4i
    Over there in the application 45387(application name: Customer Relationship Mgmt)
    Under Page 2(page name: Accounts). U can see that the i couldn't able to align the following three items to the right side position of the region along with other items.
    <li> sic code
    <li> shipping country
    <li> upsell opportunity
    i dont know why it is not arranging like the other items(as the other items are arranged properly).
    Another Problem is the tab problem in that page. I have following two tabs
    <li>Accounts(will navigate to the page 2)
    <li>Contacts(will navigate to the page1)
    There is no any problem with the tab "Accounts" as it is correctly navigating to the page 2. But the problem persist with the "Contacts" tab.
    As the "Contacts" tab is navigating to the page 1, but the"Accounts" tab is not visible in the page 1 and it is entirely getting disappearing. i dont know why it is happening.
    Generally for the tabs, if we navigate to the corresponding page by pressing the corresponding tabs means, the other tab has to be visible inorder to navigate to the other page.
    But in my case, if i pressed the "Contacts" tab means the "Accounts" tab is getting disappearing. I think that you can able to get my problem clearly in the example.
    What is the tab issue over here and also about the alignment issue.
    Thanks for your support friends.
    Regards,
    Mini

    Mini wrote:
    Hi friends,
    i have an CRM application where the item alignment and the tabs is creating a problem for me.
    Instead of me to elaborate, i can show you in my page in apex.oracle.com, so that you can understand my problem clearly in the page itself. These are the login credentials
    http://apex.oracle.com/pls/apex
    Workspace: mini_ws
    username: [email protected]
    password: mini4i
    Over there in the application 45387(application name: Customer Relationship Mgmt)Thank you for doing so. It makes troubleshooting so much easier.
    Under Page 2(page name: Accounts). U can see that the i couldn't able to align the following three items to the right side position of the region along with other items.
    <li> sic code
    <li> shipping country
    <li> upsell opportunity
    i dont know why it is not arranging like the other items(as the other items are arranged properly).The first item on the other rows has <tt>colspan="4"</tt> set.
    Another Problem is the tab problem in that page. I have following two tabs
    <li>Accounts(will navigate to the page 2)
    <li>Contacts(will navigate to the page1)
    There is no any problem with the tab "Accounts" as it is correctly navigating to the page 2. But the problem persist with the "Contacts" tab.
    As the "Contacts" tab is navigating to the page 1, but the"Accounts" tab is not visible in the page 1 and it is entirely getting disappearing. i dont know why it is happening.
    Generally for the tabs, if we navigate to the corresponding page by pressing the corresponding tabs means, the other tab has to be visible inorder to navigate to the other page.
    But in my case, if i pressed the "Contacts" tab means the "Accounts" tab is getting disappearing. I think that you can able to get my problem clearly in the example.
    What is the tab issue over here and also about the alignment issue.No idea. Tabs are awful so I never use them.

  • Two main problems with new iPod Touch

    I received my new iPod Touch 32Gb last week and I've been trying and testing for some days. It's really a nice device, but I've found two big problems with it...
    1.- WiFi connections are extremely unreliable. On my home router it connects and gets the right IP from DHCP but then it gets stuck and can't transfer data. Safari seems to work sometimes, YouTube and maps are almost impossible to use, and other apps works only sometimes.
    I've tryed also on my office WiFi network and it's a little better. But when connection is not used for a minute it gets stucked againg. Then I need to go to settings, switch WiFi off and on again, then works again for some time.
    I've spend days searching on the Internet for a solution and I've found that lots of people has the same problem. It seems iPods have serious problems connecting to some routers and blame the router about this.
    My opinion is that the problem is with the iPod. My router works flawlessly with my two laptop computers, my desktop computer, my PSP, and my HTC PDA. No problems at all. So, where's the problem?
    2.- There's a big problem on iTunes with sync settings. I've noticed that users can select to to transfer the data manually or synch. Then on each tab for media you have individual options. For example I can choose to sync music and photos, but not sync videos and Podcasts.
    The problem is that this don't work at all. I've selected to sync music but not videos but when sync all my videos had been deleted from my iPod.
    I don't see the point on placing independent sync option on iTunes if they don't work at all.

    Sounds like a faulty battery to me. Might need to contact Apple about that.
    As far as the volume, I'm pretty sure, as I just responded to another post, the problem is the software. Any ios version 4.0 and higher, the volume is lower than iPod Touch/iPhones with 3.1.3 and lower. My volume has been lower ever since I upgraded to 4.0 and 4.2, and I've found a lot of other people online complaining about the same thing. I've seen a couple posts where some have said Apple lowered the volume on purpose. I think we just need to complain to them and hope they release an updated ios with the volume raised back to where it was.

Maybe you are looking for