Examples of selectrow()


Examples of com.citytechinc.cq.component.annotations.widgets.rte.Table.selectrow()

        features.add("mergecells");
      }
      if (tableAnnotation.splitcell()) {
        features.add("splitcell");
      }
      if (tableAnnotation.selectrow()) {
        features.add("selectrow");
      }
      if (tableAnnotation.selectcolumns()) {
        features.add("selectcolumns");
      }
View Full Code Here

Examples of com.citytechinc.cq.component.annotations.widgets.rte.Table.selectrow()

        features.add("mergecells");
      }
      if (tableAnnotation.splitcell()) {
        features.add("splitcell");
      }
      if (tableAnnotation.selectrow()) {
        features.add("selectrow");
      }
      if (tableAnnotation.selectcolumns()) {
        features.add("selectcolumns");
      }
View Full Code Here

Examples of com.citytechinc.cq.component.annotations.widgets.rte.Table.selectrow()

        features.add("mergecells");
      }
      if (tableAnnotation.splitcell()) {
        features.add("splitcell");
      }
      if (tableAnnotation.selectrow()) {
        features.add("selectrow");
      }
      if (tableAnnotation.selectcolumns()) {
        features.add("selectcolumns");
      }
View Full Code Here

Examples of com.dci.intellij.dbn.editor.data.ui.table.DatasetEditorTable.selectRow()

        if (editorTable != null && model != null) {
            int index = editorTable.getSelectedRow();
            if (index == -1) index = 0;
            DatasetEditorModelRow row = model.getRowAtIndex(index);
            editorTable.stopCellEditing();
            editorTable.selectRow(row.getIndex());
            DatasetRecordEditorDialog editorDialog = new DatasetRecordEditorDialog(row);
            editorDialog.show();
        }
    }
View Full Code Here

Examples of com.mucommander.ui.main.table.FileTable.selectRow()

            try {
                AbstractFile parentFolder = currentFolder.getParent();
                AbstractFile children[] = currentFolder.ls();
                // 1 in 3 chance to go up if folder has children
                if(children.length==0 || (random.nextInt(3)==0 && parentFolder!=null)) {
                    fileTable.selectRow(0);
                    ActionManager.performAction(com.mucommander.ui.action.impl.OpenAction.Descriptor.ACTION_ID, mainFrame);
                }
                else {
                    AbstractFile randomChild = children[random.nextInt(children.length)];
                    if(!randomChild.isBrowsable())
View Full Code Here

Examples of com.mucommander.ui.main.table.FileTable.selectRow()

    @Override
    public void performAction() {
        FileTable activeTable = mainFrame.getActiveTable();

        activeTable.selectRow(Math.min(activeTable.getSelectedRow()+getRowIncrement(), activeTable.getRowCount()-1));
    }


    //////////////////////
    // Abstract methods //
View Full Code Here

Examples of com.mucommander.ui.main.table.FileTable.selectRow()

    @Override
    public void performAction() {
        FileTable activeTable = mainFrame.getActiveTable();

        activeTable.selectRow(Math.max(activeTable.getSelectedRow()-getRowDecrement(), 0));
    }


    //////////////////////
    // Abstract methods //
View Full Code Here

Examples of com.mucommander.ui.main.table.FileTable.selectRow()

    }

    @Override
    public void performAction() {
        FileTable fileTable = mainFrame.getActiveTable();
        fileTable.selectRow(fileTable.getFileTableModel().getRowCount()-1);
    }

  @Override
  public ActionDescriptor getDescriptor() {
    return new Descriptor();
View Full Code Here

Examples of com.mucommander.ui.main.table.FileTable.selectRow()

        int currentRow = fileTable.getSelectedRow();
        int endRow = Math.max(0, currentRow-getRowDecrement()+1);

        fileTable.setRangeMarked(currentRow, endRow, !fileTable.getFileTableModel().isRowMarked(currentRow));
        fileTable.selectRow(Math.max(0, endRow-1));
    }


    //////////////////////
    // Abstract methods //
View Full Code Here

Examples of com.mucommander.ui.main.table.FileTable.selectRow()

        int currentRow = fileTable.getSelectedRow();
        int lastRow = fileTable.getRowCount()-1;
        int endRow = Math.min(lastRow, currentRow+getRowIncrement()-1);

        fileTable.setRangeMarked(currentRow, endRow, !fileTable.getFileTableModel().isRowMarked(currentRow));
        fileTable.selectRow(Math.min(lastRow, endRow+1));
    }


    //////////////////////
    // Abstract methods //
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.