Issue with JButton clicking

Hi guys,
I'm having an issue with a JTable, I hope you can help me.
Last cells of each row is a JButton and my issue is with click on that button.
In fact, it's required clicking two times to run code linked to listener for the same button.
What I need is clicking just one time to run code, not two times.
This is code to build Table:
private JTable getJTable() {
          if (jTable == null) {
               jTable = new JTable();
               jTable.setModel(new MyTableModel());
               final MyTableModel tabella = (MyTableModel) jTable.getModel();
               Vector<String> nameColumn = new Vector<String>();
               nameColumn.addElement("Cliente");
               nameColumn.addElement("Data");
               nameColumn.addElement("Esito");
               nameColumn.addElement("Immagine");
               nameColumn.addElement("Dettagli");
               tabella.setColumnIdentifiers(nameColumn);
               tabella.setElencoDiagnosi(true);
               final Vector<Diagnosi> elencoDiagnosi = gestioneDiagnosi.selectAllDiagnosi();
               jTable.getColumn("Dettagli").setCellRenderer(new PanelRender());
             jTable.getColumn("Dettagli").setCellEditor(new PanelEditor());
             jTable.getColumn("Immagine").setCellRenderer(new PanelRender());
             jTable.getColumn("Immagine").setCellEditor(new PanelEditor());
             jTable.setRowHeight(36); //Metto un altezza che mi consenta di vedere tutto il bottone
             JButton[] arrayButtonDettagli = new JButton[elencoDiagnosi.size()];
             JButton[] arrayButtonImmagini = new JButton[elencoDiagnosi.size()];
             for (int i=0;i<elencoDiagnosi.size(); i++)
                  final int contatore=i;
                  arrayButtonDettagli[i] = new JButton("Elenco Dettagli");
                  arrayButtonDettagli.addActionListener(new ActionListener() {
                         public void actionPerformed(ActionEvent e)
                              Diagnosi diagnosi=elencoDiagnosi.get(contatore);
                              GUIElencoDiagnosi.this.dispose();
                              GUIModificaDiagnosi modificaDiagnosi =
                                   new GUIModificaDiagnosi(OrthoLabMain.listaUtenti,
                                        risultati,diagnosi);
                              modificaDiagnosi.setVisible(true);
          final Diagnosi diagnosi=elencoDiagnosi.get(i);
          arrayButtonImmagini[i] = new JButton(new javax.swing.ImageIcon(getClass().getResource("/image/jpg-icon.gif"))) ;
          arrayButtonImmagini[i].setSize(36, 36);
          arrayButtonImmagini[i].setBackground(Color.WHITE);
          arrayButtonImmagini[i].addActionListener(new ActionListener() {
                         public void actionPerformed(ActionEvent e)
                              JOptionPane.showMessageDialog(null,"","Zoom Immagine",
                                        JOptionPane.INFORMATION_MESSAGE,new ImageIcon(diagnosi.getImmagine()));
          Object[] row = new String[4];
          row[0]=diagnosi.getCognomeCliente()+" "+diagnosi.getNomeCliente();
          String dataviewanno=diagnosi.getData().substring(0, 4);
          String dataviewmese=diagnosi.getData().substring(4,6);
          String dataviewgiorno=diagnosi.getData().substring(6, 8);
          row[1]=dataviewgiorno+"/"+dataviewmese+"/"+dataviewanno;
          row[2]=diagnosi.getEsito();
          tabella.addRow(row);
          tabella.setValueAt(arrayButtonImmagini[i],i, 3);
                    tabella.setValueAt(arrayButtonDettagli[i], i, 4);
          return jTable;
This is code for CellRender and CellEditor (written ad hoc)Cell renderer (PanelRenderer)
public class PanelRender extends DefaultTableCellRenderer {
     private static final long serialVersionUID = 1L;
     public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
if(value instanceof JComponent) {
return (JComponent)value;
} else {
return super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
Cell Editor (PanelEditor)
public class PanelEditor extends AbstractCellEditor implements TableCellEditor {
     private static final long serialVersionUID = 1L;
     private JComponent panel = null;     
     public Object getCellEditorValue() {
          return panel;
     public Component getTableCellEditorComponent(JTable table, Object value,
               boolean isSelected, int row, int column) {
          panel = (JComponent)value;
          return panel;
Could you help me?
Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Thanks Ryan,
I solved my issue with your help. Now I've a bit issue, that is I can't see icon on my button, it seems like toString method is displayed instead icon.
For table renderer I use a new class that implements TableCellRenderer, while for model I use a new class that extends DefaultTableModel.. In the following some code...please help me, icon on button aren't shown! Thanks
private JScrollPane getJScrollPane(Vector<Diagnosi> ris) {
          if (jScrollPane == null) {
               TableCellRenderer defaultRenderer;
final MyTableModel tabella = (MyTableModel) jTable.getModel();
               defaultRenderer = jTable.getDefaultRenderer(JButton.class);
               jTable.setDefaultRenderer(JButton.class,
                           new PanelRender(defaultRenderer));
               jTable.getColumn("Immagine").setCellRenderer(defaultRenderer);
               jTable.getColumn("Immagine").setCellEditor(new PanelEditor());
               jTable.getColumn("Regolo").setCellRenderer(defaultRenderer);
               jTable.getColumn("Regolo").setCellEditor(new PanelEditor());
               jTable.getColumn("PDF").setCellRenderer(defaultRenderer);
               jTable.getColumn("PDF").setCellEditor(new PanelEditor());
               jScrollPane.setViewportView(jTable);
          return jScrollPane;My Table Model
public class MyTableModel extends DefaultTableModel {
          public MyTableModel(Object[][] data, Object[] columnNames) {
             super(data, columnNames);
          public MyTableModel(){
               super();
          public boolean isCellEditable(int row, int column) {
               if(elencoClienti){
                    if(column!=5)
                         return false;  
                    else return true;
               else if(elencoDiagnosi){
                    if(column<3)
                         return false;
                    else return true;
               else if(clientiLista)
                    return false;
               else if(diagnosiLista){
                    if(column<3)
                         return false;  
                    else return true;
               else if(clientiPerDiagnosi){
                    if(column!=3)
                         return false;
                    else return true;
               else return false;
     }Panel Editor
public class PanelEditor extends AbstractCellEditor implements TableCellEditor {
     private static final long serialVersionUID = 1L;
     private JComponent panel = null;     
     public Object getCellEditorValue() {
          return panel;
     public Component getTableCellEditorComponent(JTable table, Object value,
               boolean isSelected, int row, int column) {
          panel = (JComponent)value;
          return panel;
}

Similar Messages

  • Issue with right-click menu after latest update

    After updating Firefox, the right-click menu is showing much more commands than before (Play, Pause, Mute etc. etc.), most of them out of context ("Open Link in New Tab" when there is no link) and none of them working.

    Issues with a massive right-click context menu have been reported as caused by Firebug, so make sure to update Firebug to the latest version.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Issue with double click zoom on Essbase Excel Add-in

    Several of my users have been experiencing a problem recently when the do a double click zoom in or zoom out in Excel Add-in 7.1.3. It will start clocking (icon flashes as well as the cells while the clocking is occuring) and the only way to break out of it is to hit escape. Sometimes the clocking will only last a minute but, depending on the number of members that you can drill down into, can last several minutes at which point the users end up just escaping out. This doesn't happen with all templates or with all users. Zooming in and zooming out using the menu works fine. This only occurs with double click zooming (which to the users is much quicker and they prefer not using the menu).
    This is Excel Add-in 7.1.3 on Office 2007 which I realize is not certified compatible but we have not had this issue until the last few weeks.
    Anyone else having this issue? Ideas?

    sometimes you dont find any excel sheets open but there will be a process allocated to it and running ..you can see this in the task manager..
    so go to task manager and try deleting all the process related to excel.
    Now after deleting all the processes you find NO excel sheets open..
    Try viewing the required excel sheet now..
    hope it works now..

  • Strange issue with right click menus in apps

    Every now and again the right click menu will stop working in applications. I won't be able to right click at all and sometimes closing and re-opening the app will work and sometimes I will need to restart the computer to fix the issue.
    I am running a very simple Fluxbox and SLiM based system and only really use Chromium, Thunderbird, XChat and Gvim on a regular basis but it seems to affect all of them from time to time which suggests to me it is a system wide problem. Does anyone have any ideas as to what may be causing this rather annoying problem?
    As an aside this never effects the right click menu in Fluxbox.

    Issues with a massive right-click context menu have been reported as caused by Firebug, so make sure to update Firebug to the latest version.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • I have a serious issue with static (clicking sounds) when I use Netflix streaming along with any movies I rent via AppleTV, and yes I use a optical audio cord.  Any suggestions?

    Was is most interesting, is that if I watch other content like MLB TV using the sound bar and optical cable, I don't have this issue, it's all very strange.  Any suggestions?

    Perhaps it's obvious to you, but what would I adjust in the midi settings?  There's nothing obvious that speaks to this out of sync issue.
    FYI, I just plugged my JBL creatures into the audio out (same physical jack as the digital out, though of course they use different technologies) and there is no sync problem with the audio played through them.  Clearly it's an issue with the digital out, just wish I could figure out if it's my stereo or something in the computer.  I have no other devices that accept a digital input, so can't swap the stereo out for anything else.

  • ALV: Issue with double  click event after sorting the ALV

    Hello Experts,
    I have an internal table that populates an ALV grid. When the user doubleclicks a row, my method HANDLE_DOUBLE_CLICK returns the e_row-index value from the ALV Grid. I use this index value to read the internal table, then retrieve additional data.
    My problem is the user may sort the ALV grid before double clicking on a line. If this happens my internal table is not sorted to match the ALV grid, so reading the internal table with the e_row-index value returns the wrong information.
    When the double click event occurs, is it possible to capture the value in column 1 instead of a value for e_row-index?
    There is one more paramter in HANDLE_DOUBLE_CLICK for row id.   It is coming blank in debugging .  what is the purpose of this parameter and how i can make use of it ?
    Regards
    Vivek

    Hi,
    I am Posting The Code Which Uses Double Click Event.
    And This Code will provide the total information to you.
    REPORT  ZALVGRID_PG.
    TABLES: SSCRFIELDS.
    DATA: V_BELNR TYPE RBKP-BELNR.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS: IRNO FOR V_BELNR.
    PARAMETERS: P_GJAHR TYPE RBKP-GJAHR.
    SELECTION-SCREEN END OF BLOCK B1.
    DATA: WA TYPE ZALVGRID_DISPLAY,
          ITAB TYPE STANDARD TABLE OF ZALVGRID_DISPLAY.
    DATA: IDENTITY TYPE REF TO CL_GUI_CUSTOM_CONTAINER.
    DATA: GRID TYPE REF TO CL_GUI_ALV_GRID.
    DATA: L_IDENTITY TYPE REF TO CL_GUI_CUSTOM_CONTAINER.
    DATA: L_TREE TYPE REF TO CL_GUI_ALV_TREE_SIMPLE.
    TYPE-POOLS: SLIS,SDYDO.
    DATA: L_LOGO TYPE SDYDO_VALUE,
          L_LIST TYPE SLIS_T_LISTHEADER.
    END-OF-SELECTION.
    CLASS CL_LC DEFINITION.
      PUBLIC SECTION.
        METHODS: DC FOR EVENT DOUBLE_CLICK OF CL_GUI_ALV_GRID IMPORTING E_ROW E_COLUMN.
    ENDCLASS.
    CLASS CL_LC IMPLEMENTATION.
      METHOD DC.
        DATA: WA1 TYPE ZALVGRID_DISPLAY.
        READ TABLE ITAB INTO WA1 INDEX E_ROW-INDEX.
        BREAK-POINT.
        SET PARAMETER ID 'BLN' FIELD WA1-BELNR.
        CALL TRANSACTION 'FB02'.
      ENDMETHOD.                    "DC
    ENDCLASS.
    DATA: OBJ_CL TYPE REF TO CL_LC.
    START-OF-SELECTION.
      PERFORM SELECT_DATA.
      IF SY-SUBRC = 0.
        CALL SCREEN 100.
      ELSE.
        MESSAGE E000(0) WITH 'DATA NOT FOUND'.
      ENDIF.
      INCLUDE ZALVGRID_PG_STATUS_0100O01.
      INCLUDE ZALVGRID_PG_LOGOSUBF01.
      INCLUDE ZALVGRID_PG_SELECT_DATAF01.
    INCLUDE ZALVGRID_PG_USER_COMMAND_01I01.
    ***INCLUDE ZALVGRID_PG_STATUS_0100O01 .
    MODULE STATUS_0100 OUTPUT.
      SET PF-STATUS 'AB'.
    *  SET TITLEBAR 'xxx'.
      IF IDENTITY IS INITIAL.
        CREATE OBJECT IDENTITY
        EXPORTING
          CONTAINER_NAME = 'ALVCONTROL'.
        CREATE OBJECT GRID
        EXPORTING
          I_PARENT = IDENTITY.
        CALL METHOD GRID->SET_TABLE_FOR_FIRST_DISPLAY
          EXPORTING
             I_STRUCTURE_NAME              = 'ZALVGRID_DISPLAY'
          CHANGING
            IT_OUTTAB                     = ITAB.
        CREATE OBJECT OBJ_CL.
        SET HANDLER OBJ_CL->DC FOR GRID.
        ENDIF.
        IF L_IDENTITY IS INITIAL.
          CREATE OBJECT L_IDENTITY
          EXPORTING
            CONTAINER_NAME = 'LOGO'.
          CREATE OBJECT L_TREE
          EXPORTING
            I_PARENT = L_IDENTITY.
          PERFORM LOGOSUB USING L_LOGO.
          CALL METHOD L_TREE->CREATE_REPORT_HEADER
            EXPORTING
              IT_LIST_COMMENTARY    = L_LIST
              I_LOGO                = L_LOGO.
          ENDIF    .
    ENDMODULE.                 " STATUS_0100  OUTPUT
    ***INCLUDE ZALVGRID_PG_LOGOSUBF01 .
    FORM LOGOSUB  USING    P_L_LOGO.
      P_L_LOGO = 'ERPLOGO'.
    ENDFORM.                    " LOGOSUB
    ***INCLUDE ZALVGRID_PG_SELECT_DATAF01 .
    FORM SELECT_DATA .
      SELECT RBKP~BELNR
             RBKP~BLDAT
             RSEG~BUZEI
             RSEG~MATNR
             INTO TABLE ITAB
             FROM RBKP INNER JOIN RSEG
        ON RBKP~BELNR = RSEG~BELNR
        WHERE RBKP~BELNR IN IRNO
        AND RBKP~GJAHR = P_GJAHR.
    ENDFORM.                    " SELECT_DATA
    ***INCLUDE ZALVGRID_PG_USER_COMMAND_01I01 .
    MODULE USER_COMMAND_0100 INPUT.
      CASE SY-UCOMM.
        WHEN 'EXIT'.
          LEAVE PROGRAM.
        WHEN 'CANCEL'.
           EXIT.
           ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    Warm Regards,
    PavanKumar.G
    Edited by: pavankumar.g on Jan 19, 2012 5:30 AM

  • Issues with Illustrator click and drag

    Running Adobe CC
    on new Macbook Pro OSX 10.10.2
    Recently Illustrator has been slow at tracking my mouse and freezes when I click and drag, and eventually makes the program unresponsive. I have restarted the program, checked to make sure I have the most recent updates. I have also tried restarting my computer, and also running Illustrator without any other programs open and it still doesn't seem to fix the problem.
    I am not experiencing any other difficulties in running other programs, including indesign, photoshop, acrobat, chrome, autocad, etc.

    AI 10 is now 10 years or so old and was never tested on nor designed for Win 7 or Win 8. You should simply assume it's not compatible and will never run properly. feel free to spend your time with the compatibility modes and al lsorts of hacking with the security stuff and otehr settings, but to be honest, it will probably be a waste of time.
    Mylenium

  • Issues with mouse clicks/jumps after using CleanMyMac App.

    Since using this app. my hitherto slightly slow responding iMac has required multiple mouse clicks and is less/unresponsive.
    Anyone else used this software?
    As yet have not approached CleanMy Mac.
    I have reinstalled Mountain Lion (download) not clean install.
    Any suggestions? Is there a separate app for mouse that I can reload. Im guessing a minor chunk of code was deleted along with rubbish.
    Reg25x

    Uninstall CleanMyMac and do not reinstall it.
    CleanMyMac is one of a broad category of time- and money-wasters capable of causing system corruption that can only be rectified by reinstalling OS X, restoring from a backup, or completely erasing your system and rebuilding it from the ground up. Get rid of it and test your Mac for operation. If it does not perform normally, the possibility that Cleanmymac resulted in system corruption must be considered.
    The vast majority of Mac problems reported on this site are the direct result of having used garbage like that. Never install such junk on a Mac.

  • When using yahoo mail on firefox, when replying to emails the first letter has started to not record/appear. not an issue with my clicking, rather firefox recording the letter/digit. this does not appear to be an issue on Safari or Chrome.

    first digit typed when replying to an email on yahoo mail on firefox is not appearning. not an issue on safari or chrome browsers.

    I believe that our “Werbung problem” adds an additional second hyperlink to the pop-up window. This second link is activated whenever you trigger a saved hyperlink to a Mail.com site.
    I had the same problem and eliminated it by deleting all bookmarks, hyperlinks and automatic links that take firefox to a mail.com address. So I just deleted all bookmarks I had saved for mail.com. I also changed my home page link because it also went to my email at mail.com. I then did a warm boot, opened firefox and re-saved my bookmarks and homepage to the desired addresses. Good luck.

  • Sound Card Issues with Macromedia Flash

    I'm having issues with a clicking sound on some of the areas of my audio when I export to a quicktime file from Flash. After extensive research, I found at least one forum post addressing the issue saying that it could be that the Crystal Semiconductor CX84xx sound card that came with my G5 could need updated drivers. So far I've only been able to find an update for Windows Crystal Semiconducter, which makes me think that maybe there aren't any updates for this particular sound card for Mac?
    I guess my question is, am I on the right track, and if there are updates for this sound card where would I be able to find them?
    Thanks,
    Jay

    In particular, please see this bug report: https://bugbase.adobe.com/index.cfm?event=bug&id=3289908
    With 11.2, do you ever get proper surround decoding?  If so, can you point me to content that I can hear?
    Thanks,
    Chris

  • Tap to click not working properly in Mountain Lion. How do I get apple to fix this major issue with mountain lion?

    The tap to click does not work with mountain lion as it did before the mountain lion install. I purchased a brand new imac in August of 2011 and got a wireless keyboard and selected the wireless trackpad instead of a mouse.  The trackpad worked wonderful pre upgrade with tap to click. Now after the install of the newest beast, I have to actually press the trackpad rather than a slight tap. I have carpel tunnel and this is causing great stress upon my hand. How do I get apple to fix this major issue with mountain lion?

    Perhaps, I was not clear enough.
    I have an imac purchased in Aug. 2011 which came with Lion 10.6 (two uprades before mountain lion)
    Recently, I just purchased a macbook pro retina with Mountain Lion
    On my imac, my settings allowed me to "tap to click" everything EXCEPT the initial log in at the star up of my imac, again running Lion 10.6
    On my macbook pro retina which has Mountain Lion, I set up the "tap to click" option, but notice that a "hard" click was neccessary when trying to click things. I thought this was a macbook thing (my first one) so I went and upgraded my imac to Mountain LIon, BIG MISTAKE! Now both my imac AND my macbook only have limited "tap to click" options. Before mountain lion I could "tap" to highlight and select text, tap and drag, and many other thiings that Mountain Lion has disabled.
    I am truly surprised that no one has noticed this MAJOR issue.
    Is there a way to uninstall this update, similar to how on a PC you can go back to a restore point.
    On another note even the way PREVIEW has changed is less user friendly, there used to be icons on the bottom right corner of the screen, now I have to double tap and select the option I would like to switch between contacts and thumbnails. This is really annoying and is causing me time when reviewing files.
    Just in case anyone was wondering, I did go to system preferences -> trackpad -> select tap to click
    In fact almost all of the trackpad functions have been selected.

  • I have not had any issue with Itunes on my PC until recently. Every now and then my Itunes library appears on my screen?  I have not clicked the itunes icon beforehand nor plugged in my Ipod Touch?  Why does ths happen please. I have windows XPPOdany ic

    I have not had any issue with Itunes on my PC until very recently. Every now and then my Itunes library appears on my screen?  I have not clicked the itunes icon beforehand nor plugged in my Ipod Touch?  Why does this happen please as it is driving me crazy!.

    What's the precise text of the message, please? (There's a couple of different ones I can think of that you might be getting.)

  • Just recently I am getting the following error message when trying to access web sites. I get a pop up window stating "Exc in ev handl: TypeError: c.location is null" then I have to click ok. It is an issue with some plug-in?

    Just recently I am getting the following error message when trying to access web sites. I am using Firefox browser version 10.0.2. I get a pop up window stating "Exc in ev handl: TypeError: c.location is null" as the web site page is being displayed in browser winder. Then I have to click ok. It doesn't matter what web link/site I go to it happens. It is an issue with some plug-in?

    I have advised McAfee's product team of the problem and this thread, and they're looking into it now.

  • Having 2 small issues with 10.4.3 interface - shift click & control click

    I am having two issues with 10.4.3 on my mom's computer.
    1) I Control-Click the mouse and I do get a shortcut menu on the desktop, on icons, etc. How can I get this back? I can not seem to find a preference that sets this.
    2) I am in iPhoto and would like to select multiple film rolls (consecutive rolls) by clicking the first and then clicking the last one that I would like and it is working like I am comand clicking and only selecting the two rolls that I have clicked on and not the ones in between.
    Any help in how to work this out would be great.
    Happy Turkey Day!
    K

    1) I Control-Click the mouse and I do get a shortcut menu on the desktop, on icons, etc. How can I get this back? I can not seem to find a preference that sets this.
    Do you have any third-party items in:
    /Library/Contextual Menu Items/
    /Users/YourUsername//Library/Contextual Menu Items/
    If you do, try dragging them onto your Desktop and then retry control-clicking.

  • Issue with empty value of LOV of first row after clicking on add row button

    JDeveloper 11.1.14
    I have a page with table-form layout.
    In the form I have two detail tables on the same page (tabbed).
    I have an issue with using model-choicelist LOV's in the detail tables.
    I am able to add a new row in the detail table, select a value from the model-choiceList LOV (which is required) and save the new row.
    After adding another row in this table the value of the model-choiceList LOV in the previous row is suddenly empty on the screen. It is not empty in the database,
    I have checked it in the datbase. Only the value of the LOV of the first row on the page is being cleared after clicking on the add row button.
    After saving the new row I get the following error on the screen:
    Error: a selection is required. --> first row
    Does anyone have a suggestion how to solve this issue?

    After adding another row in this table the value of the model-choiceList LOV in the previous row is suddenly empty on the screen. It is not empty in the database, Is the complete LOV blank or only the selected value .. can you try putting autoSubmit=true in the LOV and try ? Also check if you have any partialTriggers on the LOV from the add button ?

Maybe you are looking for

  • [Q] how to use FOLDER_ITEMS

    Hi, I want to download all the documents in a folder. Can't I use the attribute of a folder, FOLDER_ITEMS ? I hit the NullPointerException when coded as follows : Item[] folderItems = (Item[]) CommonUtils.getAttribute(newFolder, Attributes.FOLDER_ITE

  • One iTunes, two computers, two iPods help?

    I have one iTunes account shared between two computers. An iPod touch is on each computer. How can I separate the account but yet have the same one? I hope that this makes sense to everyone wanting to answer. I also found that if I purchase a song on

  • I can't seem to close the screen on my new MacBook Pro with ext montitor

    I have a new MacBook Pro with a Samsung T240 through the DVI link. I can see my desktop on the external monitor when the laptop screen is open, but if I close it the computer goes to sleep and I cannot see anything on the T240. I have the Bluetooth k

  • Trying to figure out whether I can use an ASA cluster in Transparent mode to facilitate VRF based network ??

    Hi Guys, I had to re-post this here because I did not get any comments earlier.. hopefully I'll get something here.. :) I'm investigating the ways that I can use 2 x ASA (5525x) to accommodate Multi-tenancy situation with overlapping addresses. Unfor

  • New iLife 11 Disk not working

    I just got the iLife 11 disk and when I put it in my MAC mini it did nothing. Sat there spinning for a min and then spit it back out. Any ideas why? I'm running 10.6.8