Lines Matching refs:clientId
149 @default '<tr id="{rowId}" data-yui3-record="{clientId}" class="{rowClass}">{content}</tr>'
152 ROW_TEMPLATE : '<tr id="{rowId}" data-yui3-record="{clientId}" class="{rowClass}">{content}</tr>',
290 `clientId`. If the rows haven't been rendered yet, or if the row can't be
294 @param {Number|String|Model} id Row index, Model instance, or clientId
302 id = this._idMap[id.get ? id.get('clientId') : id] || id;
643 clientId = model.get('clientId'),
645 rowId : this._getRowId(clientId),
646 clientId: clientId,
776 Returns the row ID associated with a Model's clientId.
779 @param {String} clientId The Model clientId
783 _getRowId: function (clientId) {
784 return this._idMap[clientId] || (this._idMap[clientId] = Y.guid());