Lines Matching refs:clientId
147 @default '<tr id="{rowId}" data-yui3-record="{clientId}" class="{rowClass}">{content}</tr>'
150 ROW_TEMPLATE : '<tr id="{rowId}" data-yui3-record="{clientId}" class="{rowClass}">{content}</tr>',
288 `clientId`. If the rows haven't been rendered yet, or if the row can't be
292 @param {Number|String|Model} id Row index, Model instance, or clientId
300 id = this._idMap[id.get ? id.get('clientId') : id] || id;
641 clientId = model.get('clientId'),
643 rowId : this._getRowId(clientId),
644 clientId: clientId,
774 Returns the row ID associated with a Model's clientId.
777 @param {String} clientId The Model clientId
781 _getRowId: function (clientId) {
782 return this._idMap[clientId] || (this._idMap[clientId] = Y.guid());