Editable columns in table don't select the whole row

I am new to the forums and posted this to the wrong one the first time and I am not sure how to move it so I am just reposting it here. Sorry.
I have a table with 7 columns. 2 of them are non-editable and the rest are either radio buttons or check boxes. When I click on the 2 non-editable columns, the whole row gets highlighted. When I click on any of the editable columns, the button is selected, but the whole row is not highlighted. If I made the editable columns non-editable then the whole row gets highlighted when the column is clicked on. I want the button selected and the row highlighted when the editable columns are clicked on. Here is some relevant code:
class PackageTable extends JPanel
    public PackageTable(String pathfile)
       fieldsok = true;
       errorfield = new JTextField(250);
       startfield = new JTextField(250);
       stopfield = new JTextField(250);
       tableModel = new MyTableModel();
       table = new JTable(tableModel)
         public Component prepareRenderer(TableCellRenderer renderer, int rowIndex, int vColIndex)
           Component c = super.prepareRenderer(renderer, rowIndex, vColIndex);
           if (vColIndex == 0)
             c.setBackground(new Color(238,238,238));
           else
             c.setBackground(new Color(255,255,255));
           boolean selected = isRowSelected(rowIndex);
           if (selected)
             c.setBackground(Color.yellow);
           return c;
       table.setPreferredScrollableViewportSize(new Dimension(300, 1000));
       table.setRowSelectionAllowed(true);
       table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
       TableColumn column = null;
       for (int col = 0; col < 7; col++)
          column = table.getColumnModel().getColumn(col);
          if (col == 0)
            column.setPreferredWidth(30);
          else if (col == 1)
            column.setPreferredWidth(300);
          else if (col == 2)
            column.setPreferredWidth(10);
            column.setCellRenderer(new RadioButtonRenderer());
            column.setCellEditor(new RadioButtonEditor(new JCheckBox()));
          else if (col == 3)
            column.setPreferredWidth(10);
            column.setCellRenderer(new RadioButtonRenderer());
            column.setCellRenderer(new RadioButtonRenderer());
            column.setCellEditor(new RadioButtonEditor(new JCheckBox()));
          else if (col == 4)
            column.setPreferredWidth(10);
            column.setCellRenderer(new RadioButtonRenderer());
            column.setCellEditor(new RadioButtonEditor(new JCheckBox()));
          else if ((col == 5) || (col == 6))
            column.setPreferredWidth(10);
  class RadioButtonRenderer implements TableCellRenderer
    public Component getTableCellRendererComponent(JTable table,Object value,boolean isSelected,boolean hasFocus,int row,int column)
      if (isSelected)
        setForeground(table.getSelectionForeground());
        setBackground(table.getSelectionBackground());
      else
        setForeground(table.getForeground());
        setBackground(table.getBackground());
      if (value == null)
        return null;
      return (Component) value;
  class RadioButtonEditor extends DefaultCellEditor implements ItemListener
    private JRadioButton button;
    public RadioButtonEditor(JCheckBox checkBox)
      super(checkBox);
    public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column)
      if (value == null)
        return null;
      button = (JRadioButton) value;
      button.addItemListener(this);
      return (Component) value;
    public void addCellEditorListener(CellEditorListener listener)
      listenerList.add(CellEditorListener.class, listener);
    public void removeCellEditorListener(CellEditorListener listener)
      listenerList.remove(CellEditorListener.class, listener);
    protected void fireEditingStopped()
      CellEditorListener listener;
      Object[] listeners = listenerList.getListenerList();
      for (int i = 0; i < listeners.length; i++)
        if (listeners[i] == CellEditorListener.class)
          listener = (CellEditorListener)listeners[i+1];
          listener.editingStopped(changeEvent);
    protected void fireEditingCanceled()
      CellEditorListener listener;
      Object[] listeners = listenerList.getListenerList();
      for (int i = 0; i < listeners.length; i++)
        if (listeners[i] == CellEditorListener.class)
          listener = (CellEditorListener)listeners[i+1];
          listener.editingCanceled(changeEvent);
    public void cancelCellEditing()
      fireEditingCanceled();
    public boolean stopCellEditing()
      fireEditingStopped();
      return true;
    public Object getCellEditorValue()
      return button;
    public boolean isCellEditable(EventObject event)
      return true;
    public boolean shouldSelectCell(EventObject event)
      return true;
    public void itemStateChanged(ItemEvent e)
      super.fireEditingStopped();
  class MyTableModel extends AbstractTableModel
    String[] columnNames = {"","Configuration Files","Sorts","Plots","Both","Print","Alerts"};
    public MyTableModel() { }
    public int getColumnCount()
      return columnNames.length;
    public int getRowCount()
      return totaldata.size();
    public String getColumnName(int col)
      return columnNames[col];
    public Object getValueAt(int row,int col)
      return(((Vector)totaldata.get(row)).get(col));
    public Class getColumnClass(int c)
      return getValueAt(0, c).getClass();
    public boolean isCellEditable(int row, int col)
      if ((col == 0) || (col == 1))
        return false;
      else
        return true;
    public void setValueAt(Object value, int row, int col)
      Vector v1 = new Vector();
      v1 = (Vector)totaldata.get(row);
      v1.set(col,value);
      if (col == 1)
         if (((String)value).indexOf("/") == -1)
           JOptionPane.showMessageDialog(pdsframe, "The CONFIG file that was entered on line " + (row+1) + " is not valid.");
           v1.set(col,(Object)"");
           return;
      fireTableCellUpdated(row, col);
      fireTableChanged(new TableModelEvent(this));
    public void addNewRow(Vector newRow)
      totaldata.add(newRow);
      fireTableRowsInserted(totaldata.size()-1, totaldata.size()-1);
    public void deleteRow(int Row)
      totaldata.remove(Row);
      fireTableRowsDeleted(totaldata.size()-1, totaldata.size()-1);
  }I have searched forever to try to find how to do this and I can't seem to get it right. If all the radiobuttons in one column are selected and I click on one of those rows in one of those columns, then the whole row is highlighted.
Can anyone help me out?
Thanks.
esk3 {                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Sorry. I didn't know that I had to provide something that could be executed. I am going to try to put enough in so that it can. This is part of a larger program and this frame is called from another frame. Here it is. I hope it works.
import java.io.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.Dimension.*;
import java.util.*;
import java.text.*;
// Java extension packages
import javax.swing.*;
import javax.swing.event.*;
import javax.swing.border.*;
import javax.swing.table.*;
import javax.swing.JTable.*;
import javax.swing.JScrollPane.*;
  private JFrame     pdsframe;
  private String printchecked;
  private String alertschecked;
  private JTextField cb;
  private JTextField pf;
  private JScrollPane scrollpane;
  private JTable table;
  private MyTableModel tableModel;
  private Vector totaldata;
  private JLabel startlabel;
  private JLabel stoplabel;
  private JTextField startfield;
  private JTextField stopfield;
  private JTextField errorfield;
  private boolean fieldsok;
  class MyTableModel extends DefaultTableModel
    String[] columnNames = {"","Configuration Files","Sorts","Plots","Both","Print","Alerts"};
    public MyTableModel() { }
    public int getColumnCount()
      return columnNames.length;
    public int getRowCount()
      return totaldata.size();
    public String getColumnName(int col)
      return columnNames[col];
    public Object getValueAt(int row,int col)
      return(((Vector)totaldata.get(row)).get(col));
    public Class getColumnClass(int c)
      return getValueAt(0, c).getClass();
    public boolean isCellEditable(int row, int col)
      if ((col == 0) || (col == 1))
        return false;
      else
        return true;
    public void setValueAt(Object value, int row, int col)
      Vector v1 = new Vector();
      v1 = (Vector)totaldata.get(row);
      v1.set(col,value);
      if (col == 1)
         if (((String)value).indexOf("/") == -1)
           JOptionPane.showMessageDialog(pdsframe, "The CONFIG file that was entered on line " + (row+1) + " is not valid.");
           v1.set(col,(Object)"");
           return;
      fireTableCellUpdated(row, col);
      fireTableChanged(new TableModelEvent(this));
    public void addNewRow(Vector newRow)
      totaldata.add(newRow);
      fireTableRowsInserted(totaldata.size()-1, totaldata.size()-1);
    public void deleteRow(int Row)
      totaldata.remove(Row);
      fireTableRowsDeleted(totaldata.size()-1, totaldata.size()-1);
  class RadioButtonRenderer implements TableCellRenderer
    public Component getTableCellRendererComponent(JTable table,Object value,boolean isSelected,boolean hasFocus,int row,int column)
      if (isSelected)
        setForeground(table.getSelectionForeground());
        setBackground(table.getSelectionBackground());
      else
        setForeground(table.getForeground());
        setBackground(table.getBackground());
      if (value == null)
        return null;
      return (Component) value;
  class RadioButtonEditor extends DefaultCellEditor implements ItemListener
    private JRadioButton button;
    public RadioButtonEditor(JCheckBox checkBox)
      super(checkBox);
    public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column)
      if (value == null)
        return null;
      button = (JRadioButton) value;
      button.addItemListener(this);
      return (Component) value;
    public void addCellEditorListener(CellEditorListener listener)
      listenerList.add(CellEditorListener.class, listener);
    public void removeCellEditorListener(CellEditorListener listener)
      listenerList.remove(CellEditorListener.class, listener);
    protected void fireEditingStopped()
      CellEditorListener listener;
      Object[] listeners = listenerList.getListenerList();
      for (int i = 0; i < listeners.length; i++)
        if (listeners[i] == CellEditorListener.class)
          listener = (CellEditorListener)listeners[i+1];
          listener.editingStopped(changeEvent);
    protected void fireEditingCanceled()
      CellEditorListener listener;
      Object[] listeners = listenerList.getListenerList();
      for (int i = 0; i < listeners.length; i++)
        if (listeners[i] == CellEditorListener.class)
          listener = (CellEditorListener)listeners[i+1];
          listener.editingCanceled(changeEvent);
      }      fireEditingStopped();
      return true;
    public Object getCellEditorValue()
      return button;
    public boolean isCellEditable(EventObject event)
      return true;
    public boolean shouldSelectCell(EventObject event)
      return true;
    public void itemStateChanged(ItemEvent e)
      super.fireEditingStopped();
  class PackageTable extends JPanel
    public PackageTable(String pathfile)
       fieldsok = true;
       errorfield = new JTextField(250);
       startfield = new JTextField(250);
       stopfield = new JTextField(250);
       tableModel = new MyTableModel();
       table = new JTable(tableModel)
         public Component prepareRenderer(TableCellRenderer renderer, int rowIndex, int vColIndex)
           Component c = super.prepareRenderer(renderer, rowIndex, vColIndex);
           if (vColIndex == 0)
             c.setBackground(new Color(238,238,238));
           else
             c.setBackground(new Color(255,255,255));
           boolean selected = isRowSelected(rowIndex);
           if (selected)
             c.setBackground(Color.yellow);
           return c;
       table.setPreferredScrollableViewportSize(new Dimension(300, 1000));
       table.setRowSelectionAllowed(true);
       table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
       TableColumn column = null;
       for (int col = 0; col < 7; col++)
          column = table.getColumnModel().getColumn(col);
          if (col == 0)
            column.setPreferredWidth(30);
          else if (col == 1)
            column.setPreferredWidth(300);
          else if (col == 2)
            column.setPreferredWidth(10);
            column.setCellRenderer(new RadioButtonRenderer());
            column.setCellEditor(new RadioButtonEditor(new JCheckBox()));
          else if (col == 3)
            column.setPreferredWidth(10);
            column.setCellRenderer(new RadioButtonRenderer());
            column.setCellEditor(new RadioButtonEditor(new JCheckBox()));
          else if (col == 4)
            column.setPreferredWidth(10);
            column.setCellRenderer(new RadioButtonRenderer());
            column.setCellEditor(new RadioButtonEditor(new JCheckBox()));
          else if ((col == 5) || (col == 6))
            column.setPreferredWidth(10);
      JScrollPane scrollPane = new JScrollPane(table);
      scrollPane.setBounds(20,180,1000,300);
      JLabel pflabel = new JLabel("Package File: ");
      pf = new JTextField(pathfile);
      cb = new JTextField(250);
      startlabel = new JLabel("START_TIME = ");
      stoplabel = new JLabel("STOP_TIME = ");
      JLabel typelabel = new JLabel("TYPE OF FORMAT TO OUTPUT");
      JButton savebutton = new JButton("Save and Run");
      JButton jbtAddRow = new JButton("Add New Row");
      JButton jbtUpdateRow = new JButton("Update Row");
      JButton jbtDeleteRow = new JButton("Delete Row");
      JButton cancelbutton = new JButton("Cancel");
      cb.setEditable(false);
      cb.setBounds(130,230,100,30);
      cb.setEnabled(false);
      cb.setVisible(false);
      pflabel.setBounds(20,20,100,30);
      pf.setEditable(false);
      pf.setBounds(130,20,300,30);
      startlabel.setBounds(20,90,100,30);
      startfield.setEditable(false);
      startfield.setBackground(new Color(255,255,255));
      startfield.setBounds(130,90,300,30);
      stoplabel.setBounds(20,120,100,30);
      stopfield.setEditable(false);
      stopfield.setBackground(new Color(255,255,255));
      stopfield.setBounds(130,120,300,30);
      typelabel.setBounds(525,150,400,30);
      savebutton.setBounds(130,500,130,30);
      jbtAddRow.setBounds(280,500,130,30);
      jbtUpdateRow.setBounds(430,500,130,30);
      jbtDeleteRow.setBounds(580,500,130,30);
      cancelbutton.setBounds(730,500,130,30);
      add(scrollPane);
      add(pflabel);
      add(pf);
      add(startlabel);
      add(stoplabel);
      add(startfield);
      add(stopfield);
      add(typelabel);
      add(jbtAddRow);
      add(jbtUpdateRow);
      add(jbtDeleteRow);
      add(savebutton);
      add(cancelbutton);
  public void createAndShowGUI() {
    //Create and set up the window.
    pdsframe = new JFrame("PDS Batch Parameters");
    pdsframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    totaldata = new Vector();
    //Create and set up the content pane.
    PackageTable newContentPane = new PackageTable(pathfile);
    newContentPane.setOpaque(true); //content panes must be opaque
    pdsframe.setContentPane(newContentPane);
    //Display the window.
    pdsframe.setLayout(null);
    pdsframe.setSize(1100,700);
    pdsframe.setLocationRelativeTo(null);
    pdsframe.setFocusableWindowState(true);
    pdsframe.setVisible(true);
    pdsframe.show();
    pdsframe.setAlwaysOnTop(true);
    pdsframe.requestFocus();
public void main()
    Toolkit.getDefaultToolkit().beep();
    createAndShowGUI();
}Does this help? I hope it works. These are the relevant parts. Thanks.
esk3

Similar Messages

  • Trying to edit a file in Acrobat, I select the image, right click-edit image. Opens in Photoshop, I make correction, but file updates back in Acrobat at a lower resolution

    Trying to edit a file in Acrobat, I select the image, right click-edit image. Opens in Photoshop, I make correction, but file updates back in Acrobat at a lower resolution

    What was the resolution before and after?

  • If I don't select the database when I run an opened script.....

    If I don't select the database when I run an opened script, it will run forever. I think it should generate an error to user, to tell user to select a database. My version is 1.0.14.67 windowsxp
    thx

    Please walk us through the steps that you use to recreate this issue. For me, the commit option is not available unless a connection is specified, so I am confused as to what actions you are performing. Also let us know what your platform and patch level is in sqldeveloper.

  • Add radioButton to select the particular Row

    Hello
    Team
    I have one af:table componant i want to give the radio button to a row for select the particular row...
    this functionality bydefault added in 10g but..now i am working in 11g,how can i achive this functionality

    Hi,
    this is tricky because it involves manual coding. You would need to add a radio button. You would use
    http://adfui.us.oracle.com/projects/adf.faces/multiproject/adf-richclient-api/tagdoc/af_selectBooleanRadio.html
    in an extra column and define the group attribute so all rows participate in a single select case. The, when you select a group you need to fire a change event that allows you to determine which radio button is clicked. Based on this information you select the current row in the table. I didn't code this, but this is how I would do it. As said, gows with some coding especially when you nedd to synchronize the radio button with the selction users do by directly clicking into the table
    Frank

  • Select the current row in read only querry VO

    Hi.,
    I am using jdev 11.1.1.5
    I had created a Finyear EO with corresponding VO
    I had also created a read only querry VO [PostdGLhdlnVO]
    I had created a viewlink between FinyearVO and PostdGlhdlnVO with following conditions
    FinyearVO.bu = PostdGLhdlnVO.bu
    FinyearVO.year = PostdGLhdlnVO.year
    I need to select the current row and print that row using println statement. as i am using readonly querry while i drag and drop the PostdGLhdlnVO i cant able to select the current line (i.e., when user clicks the current row)
    My scenario:
    I need to create a non database checkbox for every row in that table [PostdGLhdlnVO] which will get the current row
    can anyone help me to create a nondatabase checkbox for that table

    Try,
    This may help:
    Re: ADF Table Multiple row selection by Managed Bean-Prasad

  • Select the current row

    hi.,
    I am using jdev 11.1.5
    can any would please tell me how to select the current row in a table and perform operations in it.,
    My Scenario:
    I had created a table.,
    If the user clicks the button named post it must check the attribute [
    Year] and the Status must be updated to all the year
    For eg;
    St Year
    N 201011
    N 201112
    if the user clicks the button The st attribute should be updated with corresponding Year
    so that the N must be updated to P with the year 201011 now my output should be
    st Year
    P 201011
    N 201112
    any one can pls help me

    Hi..
    You can try this using In built Bindings.For that Table need row selection single and need form using same VO.for update drag Commit operation as a button to form.
    http://www.mandsconsulting.com/adf-table-row-selection-event-update-form

  • How to Select the Current Row When Using af:iterator?

    Hello all,
    I encounter the following problem when using af:iterator to display data from
    a View Object:
    When trying to display the content of a row via a popup, only the first row is
    returned no matter which row is selected. So a selection of the current row
    should exist or some other method which should allow the access to the
    current row.
    The af:table has a selectionListener attribute which permit to achieve this.
    Does anyone know about some similar attribute or some method for
    selecting the current row when the af:iterator is used?
    Thank you,
    Mirela

    I would be interested in the answer to this basic question as well. I cannot get the selected row value of an attribute in an iterator for a view if I simply set-up a attribute binding to the iterator. It seems that this should be possible. I've had no other option but to obtain the current row and the related attributes programmatically. This works fine, but if there is a more elegant option, then I'd certainly like to use it.
              <af:table value="#{bindings.CompaniesView1.collectionModel}"
                            var="row"
                            rows="#{bindings.CompaniesView1.rangeSize}"
                            emptyText="#{bindings.CompaniesView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                            fetchSize="#{bindings.CompaniesView1.rangeSize}"
                            selectedRowKeys="#{bindings.CompaniesView1.collectionModel.selectedRow}"
                            rowBandingInterval="0" id="tCompanies"
                            summary="Companies"
                            width="100%"
                            rowSelection="single"
                            binding="#{CompanyBackingBean.companiesTable}">Page Def:
        <attributeValues IterBinding="CompaniesView1Iterator" id="Id">
          <AttrNames>
            <Item Value="Id"/>
          </AttrNames>
        </attributeValues>I should be able to get the Id attribute value of the current selected row using "#{bindings.Id}", right? Well, it doesn't work for me. Any ideas?
    Thanks

  • Select the whole field (of a JTexField) in a JTable's cell

    I succeed to select the whole field of a JTextfield contained in the cell of a JTable, adding a FocusListener. It works with the mouse selection.
    Unfortunately this process isn�t efficient while moving from a cell to another with the TAB key.
    Does someone know a solution (ActionMap ?) ?

    Here is the solution which fits my needs :
    package myPackage;
    import java.awt.Component;
    import javax.swing.text.JTextComponent;
    import javax.swing.JTable;
    import javax.swing.table.TableCellEditor;
    import javax.swing.event.ListSelectionEvent;
    public class JMyTable extends JTable
    public JMyTable()
    super();
    public void columnSelectionChanged(ListSelectionEvent e)
    super.columnSelectionChanged(e);
    if(( getSelectedRow() >= 0 ) && ( getSelectedColumn() >= 0 ))
    TableCellEditor tableCellEditor = this.getCellEditor(getSelectedRow(), getSelectedColumn());
    Component c = tableCellEditor.getTableCellEditorComponent( this,
    getValueAt(getSelectedRow(), getSelectedColumn()),
    isCellSelected(getSelectedRow(), getSelectedColumn()),
    getSelectedRow(),
    getSelectedColumn() );
    if (c instanceof JTextComponent)
    if ( this.isCellEditable(getSelectedRow(), getSelectedColumn()) )
    editCellAt(getSelectedRow(), getSelectedColumn());
    getEditorComponent().requestFocus();
    ((JTextComponent) c).selectAll();
    I would like to thank you all for your answer.
    Sincerely yours
    Alexandre

  • Some of my rotation animation is stepping at about one degree increments instead of tweening smoothly.  I'm using classic tweening.  I see that if I select the whole interval and use F6 to convert every tween frame to a key and then select the object at t

    Some of my rotation animation is stepping at about one degree increments instead of tweening smoothly.  I'm using classic tweening.  I see that if I select the whole interval and use F6 to convert every tween frame to a key and then select the object at the different frames, that I see under transform that the skew values are changes from frame to frame aroung that same one degree range.  Is there a solution to this?

    Some of my rotation animation is stepping at about one degree increments instead of tweening smoothly.  I'm using classic tweening.  I see that if I select the whole interval and use F6 to convert every tween frame to a key and then select the object at the different frames, that I see under transform that the skew values are changes from frame to frame aroung that same one degree range.  Is there a solution to this?

  • My pictures don't fill the whole 4 x 6 page when printing

    We have a cannon pixma printer and know when I try to print my pictures on a 4 x 6 page they don't fill the whole page I have taken border off. Please help

    What is the number of pixels (width and height) in your image?
    How much of the page is filled? (please measure it with a ruler)

  • Selecting The First Row Of h:dataTable after getting new DataModel f

    Hi Friends
    If any one knows how to select first row of a dataTable on change of a DataModel it is representing please give the reply

    I haven't understood the answer of UlrichCech
    I am not using IRDA for my development purpose.
    and abt your reply ..
    I have already tried tht way but the problem is that
    whenever I selects different row page gets postback and selects
    the first row again and there is no way to trap posback event in JSF
    like ASP.NET
    I think my answer is some where related to DataModelListener..

  • Problems with "Background Eraser Tool" and "Blur". The tools don't affect the whole area but just connect the start and the last points.

    Hello!
    I have some issues with Photoshop CC 2014. The tools "Background Eraser Tool" and "Blur" won't work correctly. When I’m holding down the left mouse button and trying to erase or blur some area, the tools don’t affect the whole area but just connect the start and the last points – like drawing a line. These troubles exist with mentioned tools only, other tools work correctly.
    I’ve restored each tool separately, restored all the tools together, installed new drivers for tablet, re-installed Photoshop and even Windows. Nothing helped. These tools worked correctly earlier with the same adjustments, but one day something went wrong.
    How can I make the tools work correctly?
    Some information about my computer:
    • Notebook Lenovo Y560
    • Windows 7 Home Basic SP1 x64
    • Intel Core i5 2.53 GHz
    • 4Gb RAM
    • ATI Mobility Radeon HD 5730 1Gb
    • Tablet Wacom Bamboo CTL-470

    Hi,
    I have a similar problem with the Background Eraser tool as well. It's the same both on my PC and on my laptop, both running Win 8.1 and PS CC2014. Would be great to have a solution for this. Did you managed to find a fix?

  • Select the created Row

    Hello,
    I have a big problem, I hope someone can help me.
    I create a new Row with the code
    Row r = myVo.createRow(); And set values with
    r.setAttribute("attr", attrValue);How can I select the current row in this view Object ??
    Thanks in advance

    Dear Rahul,
    Also if you are getting the PDF from the attachments from the services for object, then you can use the below class and FM
    cl_binary_relation=>read_links             "<----Get the attachemnts
    SO_OBJECT_READ                              "<----Get details about attachments
    SO_DOCUMENTS_MANAGER              "<----Display the attachment
    Hope this helps you.
    Regards,
    Sachinkumar Mehta

  • Unable to just "select" the whole clip.

    Every time I click on a clip in the Event Library the default range selection appears on the clip.  As a result I am unable to just "select" the whole clip.  The "Select" tool has been selected from the Dashboard.  How do I get back to being able to just select the whole clip?

    HelmerJR wrote:
    Allow me to try to get my issue across another way:  I have both stills and video in the Event Library of FCPX 10.0.9.  The stills are all 10 sec. long, which is in keeping with my Preferences.  When I try to select the entire 10 sec. still clip or the entire video clip, a smaller part of the clips are highlighted in yellow, as if I had selected in and out points on the clip.  I want to select the entire clip to work with, not a smaller range within a clip.  I have selected and am using the Select tool from the Tools pop-up menu in the toolbar, but it's acting more like the Range Selection tool.  Any ideas how to get the Select tool to work like it should?
    Are you familiar with the X key? Press X to select the whole clip.

  • Magic Wand selects the whole picture

    Hey, i tried using the Magic Wand Tool to select an area before and it works. But yesterday idk what happened and whenever i used magic want tool to select a specific area it keeps selecting the whole picture. How do i get this fixed? Please reply asap. Thanks!

    Hi SepetMTJ22,
    I would try looking at Charles' suggestions. It is most likely that you have an empty or solid layer selected, which would select everything for you:
    Or that you have a sample size that is too large, make sure you have it set to a small enough point sample. One is recommended.

Maybe you are looking for

  • What happes to "iPhoto saved FACES" if I reinstall OS X Lion?

    I have bought a 2011 macbook pro running the default version of os x on the device and then i upgraded to os x lion. Now the problem is that i want to change my mac's name (the name that appears in front of the home logo in finder) and due to searche

  • JCO_SYSTEM_FAILURE

    We get this error when sending messages: <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> - <!--  Request Message Mapping   --> - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SO

  • Certification CRM 5.0 Marketing

    Hi experts, I'm going to take certification exams in CRM marketing. It would be helpfull if any one could share sample questions or tips for those exams. Thanks, Mireia Ferré

  • SSIS 2008 R2 Foreach Loop Container on ADO object in Endless Loop

    SSIS 2008 R2 I have an object Variable populated by a SQL Query.  I then attach it to a Foreach Loop Container with "Foreach ADO Enumerator" and define the variable mappings.  Inside the Foreach Loop is a series of tasks.  It appears that the tasks a

  • Viewing a QT movie on PC created on a Mac

    I burned two Quick Time movies onto a data disk on a Power Mac G4 yesterday and brought them home to play on my PC. Windows OS tells me that it cannot read my disk and that it might be corrupted. I should be able to view QT movies whether on Windows