Searched refs:row (Results 1 - 25 of 317) sorted by relevance

1234567891011>>

/forgerock/openidm-v4/openidm-zip/src/main/resources/samples/audit-sample/tools/
H A DSearchScript.groovy225 sql.eachRow(statement, whereParams, { row ->
226 if (dataCollector.uid != row.objectid) {
227 // process each row of the resultset
231 id : row.id as String,
232 uid : row.objectid,
233 activitydate : row.activitydate,
234 transactionid : row.transactionid,
235 eventname : row.eventname,
236 userid : row.userid,
237 trackingids : row
[all...]
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/common/components/table/
H A DInlineEditTable.js37 * Initializes the table with editables rows. Only single row is allowed to be in edit mode at a time.
68 const row = this.initRow(value);
69 this.tBody.append(row.renderInReadOnlyMode().$el);
70 this.rows.push(row);
80 const row = new EditRow(rowData, this.rowSchema);
82 const enterEditMode = (row) => {
83 if (row === this.currentlyEditedRow || row === this.newRow) {
91 row.renderInEditMode().focus();
92 this.currentlyEditedRow = row;
[all...]
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DBackupTableModel.java64 public Object getValueAt(int row, int column) argument
69 return get(row).getID();
71 return get(row).getPath();
73 return get(row).getCreationDate();
75 return get(row).getType();
82 * Returns the row count.
83 * @return the row count.
100 * Gets the BackupDescriptor in a given row.
101 * @param row the row
104 get(int row) argument
[all...]
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DBackupTableModel.java65 public Object getValueAt(int row, int column) argument
70 return get(row).getID();
72 return get(row).getPath();
74 return get(row).getCreationDate();
76 return get(row).getType();
83 * Returns the row count.
84 * @return the row count.
101 * Gets the BackupDescriptor in a given row.
102 * @param row the row
105 get(int row) argument
[all...]
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DBackupTableModel.java65 public Object getValueAt(int row, int column) argument
70 return get(row).getID();
72 return get(row).getPath();
74 return get(row).getCreationDate();
76 return get(row).getType();
83 * Returns the row count.
84 * @return the row count.
101 * Gets the BackupDescriptor in a given row.
102 * @param row the row
105 get(int row) argument
[all...]
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DBackupTableModel.java64 public Object getValueAt(int row, int column) argument
69 return get(row).getID();
71 return get(row).getPath();
73 return get(row).getCreationDate();
75 return get(row).getType();
82 * Returns the row count.
83 * @return the row count.
100 * Gets the BackupDescriptor in a given row.
101 * @param row the row
104 get(int row) argument
[all...]
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DBackupTableModel.java65 public Object getValueAt(int row, int column) argument
70 return get(row).getID();
72 return get(row).getPath();
74 return get(row).getCreationDate();
76 return get(row).getType();
83 * Returns the row count.
84 * @return the row count.
101 * Gets the BackupDescriptor in a given row.
102 * @param row the row
105 get(int row) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/datamodel/
H A DBackupTableModel.java59 public Object getValueAt(int row, int column) argument
64 return get(row).getID();
66 return get(row).getPath();
68 return get(row).getCreationDate();
70 return get(row).getType();
77 * Returns the row count.
78 * @return the row count.
95 * Gets the BackupDescriptor in a given row.
96 * @param row the row
99 get(int row) argument
[all...]
/forgerock/openidm-v4/openidm-zip/src/main/resources/samples/sample3/tools/
H A DSyncScript.groovy88 sql.eachRow("select * from users where timestamp > ${tstamp}", { row ->
90 def userid = row.id as Integer
101 syncToken row.timestamp.getTime()
104 id row.uid
105 uid row.id as String
106 attribute 'uid', row.uid
107 attribute 'fullname', row.fullname
108 attribute 'firstname', row.firstname
109 attribute 'lastname', row.lastname
110 attribute 'email', row
[all...]
H A DSearchScript.groovy219 sql.eachRow(statement, whereParams, { row ->
220 if (dataCollector.uid != row.uid) {
221 // new user row, process what we've collected
226 id : row.id as String,
227 uid : row.uid,
228 fullname: row.fullname,
229 firstname: row.firstname,
230 lastname: row.lastname,
231 email: row.email,
232 organization: row
[all...]
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DLDAPEntryTableCellRenderer.java84 boolean isSelected, boolean hasFocus, int row, int column) {
85 if (isRequired(table, row, column))
93 if (isPassword(table, row, column))
96 hasFocus, row, column);
100 if (!table.isCellEditable(row, column))
114 row, column));
120 updateComponent(ocPanel, table, row, column, isSelected);
129 binaryPanel.setValue((byte[])value, isImage(table, row, column));
133 binaryPanel.setValue((byte[])null, isImage(table, row, column));
138 binaryPanel.setValue((BinaryValue)value, isImage(table, row, colum
83 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
198 getStringValue(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
221 isPassword(JTable table, int row, int col) argument
235 isImage(JTable table, int row, int col) argument
275 isRequired(JTable table, int row, int col) argument
[all...]
H A DSelectableTableCellRenderer.java144 boolean isSelected, boolean hasFocus, int row, int column)
146 super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row,
148 updateComponent(this, table, row, column, isSelected);
155 protected void updateComponent(Component comp, JTable table, int row, argument
158 if (table.isCellEditable(row, column) && !isSelected)
163 else if (isBeingPressed && hasMouseOver && (row == lastRowMouseOver))
168 else if ((hasMouseOver && (row == lastRowMouseOver)) || isSelected)
143 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
H A DAccessibleTableHeaderRenderer.java54 boolean isSelected, boolean hasFocus, int row, int column)
57 isSelected, hasFocus, row, column);
53 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
H A DBaseDNCellRenderer.java56 boolean isSelected, boolean hasFocus, int row, int column) {
75 isSelected, hasFocus, row, column);
55 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DLDAPEntryTableCellRenderer.java83 boolean isSelected, boolean hasFocus, int row, int column) {
84 if (isRequired(table, row, column))
92 if (isPassword(table, row, column))
95 hasFocus, row, column);
99 if (!table.isCellEditable(row, column))
113 row, column));
119 updateComponent(ocPanel, table, row, column, isSelected);
128 binaryPanel.setValue((byte[])value, isImage(table, row, column));
132 binaryPanel.setValue((byte[])null, isImage(table, row, column));
137 binaryPanel.setValue((BinaryValue)value, isImage(table, row, colum
82 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
197 getStringValue(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
220 isPassword(JTable table, int row, int col) argument
234 isImage(JTable table, int row, int col) argument
274 isRequired(JTable table, int row, int col) argument
[all...]
H A DSelectableTableCellRenderer.java143 boolean isSelected, boolean hasFocus, int row, int column)
145 super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row,
147 updateComponent(this, table, row, column, isSelected);
154 protected void updateComponent(Component comp, JTable table, int row, argument
157 if (table.isCellEditable(row, column) && !isSelected)
162 else if (isBeingPressed && hasMouseOver && (row == lastRowMouseOver))
167 else if ((hasMouseOver && (row == lastRowMouseOver)) || isSelected)
142 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DLDAPEntryTableCellRenderer.java84 boolean isSelected, boolean hasFocus, int row, int column) {
85 if (isRequired(table, row, column))
93 if (isPassword(table, row, column))
96 hasFocus, row, column);
100 if (!table.isCellEditable(row, column))
114 row, column));
120 updateComponent(ocPanel, table, row, column, isSelected);
129 binaryPanel.setValue((byte[])value, isImage(table, row, column));
133 binaryPanel.setValue((byte[])null, isImage(table, row, column));
138 binaryPanel.setValue((BinaryValue)value, isImage(table, row, colum
83 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
198 getStringValue(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
221 isPassword(JTable table, int row, int col) argument
235 isImage(JTable table, int row, int col) argument
275 isRequired(JTable table, int row, int col) argument
[all...]
H A DSelectableTableCellRenderer.java144 boolean isSelected, boolean hasFocus, int row, int column)
146 super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row,
148 updateComponent(this, table, row, column, isSelected);
155 protected void updateComponent(Component comp, JTable table, int row, argument
158 if (table.isCellEditable(row, column) && !isSelected)
163 else if (isBeingPressed && hasMouseOver && (row == lastRowMouseOver))
168 else if ((hasMouseOver && (row == lastRowMouseOver)) || isSelected)
143 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DLDAPEntryTableCellRenderer.java83 boolean isSelected, boolean hasFocus, int row, int column) {
84 if (isRequired(table, row, column))
92 if (isPassword(table, row, column))
95 hasFocus, row, column);
99 if (!table.isCellEditable(row, column))
113 row, column));
119 updateComponent(ocPanel, table, row, column, isSelected);
128 binaryPanel.setValue((byte[])value, isImage(table, row, column));
132 binaryPanel.setValue((byte[])null, isImage(table, row, column));
137 binaryPanel.setValue((BinaryValue)value, isImage(table, row, colum
82 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
197 getStringValue(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
220 isPassword(JTable table, int row, int col) argument
234 isImage(JTable table, int row, int col) argument
274 isRequired(JTable table, int row, int col) argument
[all...]
H A DSelectableTableCellRenderer.java143 boolean isSelected, boolean hasFocus, int row, int column)
145 super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row,
147 updateComponent(this, table, row, column, isSelected);
154 protected void updateComponent(Component comp, JTable table, int row, argument
157 if (table.isCellEditable(row, column) && !isSelected)
162 else if (isBeingPressed && hasMouseOver && (row == lastRowMouseOver))
167 else if ((hasMouseOver && (row == lastRowMouseOver)) || isSelected)
142 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/ui/renderer/
H A DLDAPEntryTableCellRenderer.java84 boolean isSelected, boolean hasFocus, int row, int column) {
85 if (isRequired(table, row, column))
93 if (isPassword(table, row, column))
96 hasFocus, row, column);
100 if (!table.isCellEditable(row, column))
114 row, column));
120 updateComponent(ocPanel, table, row, column, isSelected);
129 binaryPanel.setValue((byte[])value, isImage(table, row, column));
133 binaryPanel.setValue((byte[])null, isImage(table, row, column));
138 binaryPanel.setValue((BinaryValue)value, isImage(table, row, colum
83 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
198 getStringValue(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
221 isPassword(JTable table, int row, int col) argument
235 isImage(JTable table, int row, int col) argument
275 isRequired(JTable table, int row, int col) argument
[all...]
H A DSelectableTableCellRenderer.java144 boolean isSelected, boolean hasFocus, int row, int column)
146 super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row,
148 updateComponent(this, table, row, column, isSelected);
155 protected void updateComponent(Component comp, JTable table, int row, argument
158 if (table.isCellEditable(row, column) && !isSelected)
163 else if (isBeingPressed && hasMouseOver && (row == lastRowMouseOver))
168 else if ((hasMouseOver && (row == lastRowMouseOver)) || isSelected)
143 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/renderer/
H A DLDAPEntryTableCellRenderer.java81 boolean isSelected, boolean hasFocus, int row, int column) {
82 if (isRequired(table, row, column))
90 if (isPassword(table, row, column))
93 hasFocus, row, column);
97 final boolean cellEditable = table.isCellEditable(row, column);
103 ocPanel.setBorder(getDefaultFocusBorder(table, value, isSelected, row, column));
109 updateComponent(ocPanel, table, row, column, isSelected);
118 binaryPanel.setValue((byte[])value, isImage(table, row, column));
122 binaryPanel.setValue((byte[])null, isImage(table, row, column));
127 binaryPanel.setValue((BinaryValue)value, isImage(table, row, colum
80 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
187 getStringValue(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
210 isPassword(JTable table, int row, int col) argument
223 isImage(JTable table, int row, int col) argument
262 isRequired(JTable table, int row, int col) argument
[all...]
H A DSelectableTableCellRenderer.java137 boolean isSelected, boolean hasFocus, int row, int column)
139 super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row,
141 updateComponent(this, table, row, column, isSelected);
145 void updateComponent(Component comp, JTable table, int row, argument
148 if (table.isCellEditable(row, column) && !isSelected)
153 else if (isBeingPressed && hasMouseOver && row == lastRowMouseOver)
158 else if ((hasMouseOver && row == lastRowMouseOver) || isSelected)
136 getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) argument
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/user/oauth2/
H A DTokensView.js123 "fnRowCallback": function (row, data) {
124 $(row).children().not(":first").click(function () {
125 var id = data.id[0], htmlCode, table, temp = row, td;
162 if (table.fnIsOpen(row)) {
163 table.fnClose(row);
165 table.fnOpen(row, htmlCode, "details");
168 return row;

Completed in 48 milliseconds

1234567891011>>