NIFI-1268: - In some environments it appears as though the row selection event is triggering when there is no items in the table. Verifying the item was found prior to continuing.

Signed-off-by: Aldrin Piri <aldrin@apache.org>
This commit is contained in:
Matt Gilman 2015-12-07 17:40:20 -05:00 committed by Aldrin Piri
parent 46623c2bf3
commit ee7eeb0493
2 changed files with 39 additions and 33 deletions

View File

@ -931,6 +931,7 @@ nf.CanvasToolbox = (function () {
var processorType = processorTypesGrid.getDataItem(processorTypeIndex);
// set the processor type description
if (nf.Common.isDefinedAndNotNull(processorType)) {
if (nf.Common.isBlank(processorType.description)) {
$('#processor-type-description').attr('title', '').html('<span class="unset">No description specified</span>');
} else {
@ -942,6 +943,7 @@ nf.CanvasToolbox = (function () {
$('#selected-processor-name').text(processorType.label);
$('#selected-processor-type').text(processorType.type);
}
}
});
// wire up the dataview to the grid

View File

@ -414,6 +414,7 @@ nf.Settings = (function () {
var controllerServiceType = controllerServiceTypesGrid.getDataItem(controllerServiceTypeIndex);
// set the controller service type description
if (nf.Common.isDefinedAndNotNull(controllerServiceType)) {
if (nf.Common.isBlank(controllerServiceType.description)) {
$('#controller-service-type-description').attr('title', '').html('<span class="unset">No description specified</span>');
} else {
@ -428,6 +429,7 @@ nf.Settings = (function () {
// show the selected controller service
$('#controller-service-description-container').show();
}
}
});
controllerServiceTypesGrid.onDblClick.subscribe(function (e, args) {
var controllerServiceType = controllerServiceTypesGrid.getDataItem(args.row);
@ -1110,6 +1112,7 @@ nf.Settings = (function () {
var reportingTaskType = reportingTaskTypesGrid.getDataItem(reportingTaskTypeIndex);
// set the reporting task type description
if (nf.Common.isDefinedAndNotNull(reportingTaskType)) {
if (nf.Common.isBlank(reportingTaskType.description)) {
$('#reporting-task-type-description').attr('title', '').html('<span class="unset">No description specified</span>');
} else {
@ -1124,6 +1127,7 @@ nf.Settings = (function () {
// show the selected reporting task
$('#reporting-task-description-container').show();
}
}
});
reportingTaskTypesGrid.onDblClick.subscribe(function (e, args) {
var reportingTaskType = reportingTaskTypesGrid.getDataItem(args.row);