Fix for EMM-1546

This commit is contained in:
kamidu 2016-09-15 19:26:48 +05:30
parent 4178a21efa
commit 0160bf5fee

View File

@ -76,8 +76,10 @@ function loadDevices() {
return {};
}
var fnCreatedRow = function (nRow) {
var fnCreatedRow = function (nRow, aData, dataIndex) {
$(nRow).attr('data-type', 'selectable');
$(nRow).attr('data-deviceid', aData.deviceIdentifier);
$(nRow).attr('data-devicetype', aData.deviceType);
};