kero
Version:
24 lines (21 loc) • 749 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
/**
* Module : kero dataTable rowCurrent
* Author : liuyk(liuyk@yonyou.com)
* Date : 2016-08-08 09:59:01
*/
var updateCurrIndex = function updateCurrIndex() {
var currentIndex = this.focusIndex() != -1 ? this.focusIndex() : this.getSelectedIndex();
if (this._oldCurrentIndex != currentIndex) {
this._oldCurrentIndex = currentIndex;
this.trigger(DataTable.ON_CURRENT_ROW_CHANGE);
this.currentRowChange(-this.currentRowChange());
if (this.ns) {
if (this.root.valueChange[this.ns]) this.root.valueChange[this.ns](-this.root.valueChange[this.ns]());
}
}
};
exports.updateCurrIndex = updateCurrIndex;