mirror of https://github.com/apache/nifi.git
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:
parent
46623c2bf3
commit
ee7eeb0493
|
@ -931,16 +931,18 @@ nf.CanvasToolbox = (function () {
|
|||
var processorType = processorTypesGrid.getDataItem(processorTypeIndex);
|
||||
|
||||
// set the processor type description
|
||||
if (nf.Common.isBlank(processorType.description)) {
|
||||
$('#processor-type-description').attr('title', '').html('<span class="unset">No description specified</span>');
|
||||
} else {
|
||||
$('#processor-type-description').html(processorType.description).ellipsis();
|
||||
}
|
||||
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 {
|
||||
$('#processor-type-description').html(processorType.description).ellipsis();
|
||||
}
|
||||
|
||||
// populate the dom
|
||||
$('#processor-type-name').text(processorType.label).ellipsis();
|
||||
$('#selected-processor-name').text(processorType.label);
|
||||
$('#selected-processor-type').text(processorType.type);
|
||||
// populate the dom
|
||||
$('#processor-type-name').text(processorType.label).ellipsis();
|
||||
$('#selected-processor-name').text(processorType.label);
|
||||
$('#selected-processor-type').text(processorType.type);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
|
|
@ -414,19 +414,21 @@ nf.Settings = (function () {
|
|||
var controllerServiceType = controllerServiceTypesGrid.getDataItem(controllerServiceTypeIndex);
|
||||
|
||||
// set the controller service type description
|
||||
if (nf.Common.isBlank(controllerServiceType.description)) {
|
||||
$('#controller-service-type-description').attr('title', '').html('<span class="unset">No description specified</span>');
|
||||
} else {
|
||||
$('#controller-service-type-description').html(controllerServiceType.description).ellipsis();
|
||||
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 {
|
||||
$('#controller-service-type-description').html(controllerServiceType.description).ellipsis();
|
||||
}
|
||||
|
||||
// populate the dom
|
||||
$('#controller-service-type-name').text(controllerServiceType.label).ellipsis();
|
||||
$('#selected-controller-service-name').text(controllerServiceType.label);
|
||||
$('#selected-controller-service-type').text(controllerServiceType.type);
|
||||
|
||||
// show the selected controller service
|
||||
$('#controller-service-description-container').show();
|
||||
}
|
||||
|
||||
// populate the dom
|
||||
$('#controller-service-type-name').text(controllerServiceType.label).ellipsis();
|
||||
$('#selected-controller-service-name').text(controllerServiceType.label);
|
||||
$('#selected-controller-service-type').text(controllerServiceType.type);
|
||||
|
||||
// show the selected controller service
|
||||
$('#controller-service-description-container').show();
|
||||
}
|
||||
});
|
||||
controllerServiceTypesGrid.onDblClick.subscribe(function (e, args) {
|
||||
|
@ -1110,19 +1112,21 @@ nf.Settings = (function () {
|
|||
var reportingTaskType = reportingTaskTypesGrid.getDataItem(reportingTaskTypeIndex);
|
||||
|
||||
// set the reporting task type description
|
||||
if (nf.Common.isBlank(reportingTaskType.description)) {
|
||||
$('#reporting-task-type-description').attr('title', '').html('<span class="unset">No description specified</span>');
|
||||
} else {
|
||||
$('#reporting-task-type-description').html(reportingTaskType.description).ellipsis();
|
||||
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 {
|
||||
$('#reporting-task-type-description').html(reportingTaskType.description).ellipsis();
|
||||
}
|
||||
|
||||
// populate the dom
|
||||
$('#reporting-task-type-name').text(reportingTaskType.label).ellipsis();
|
||||
$('#selected-reporting-task-name').text(reportingTaskType.label);
|
||||
$('#selected-reporting-task-type').text(reportingTaskType.type);
|
||||
|
||||
// show the selected reporting task
|
||||
$('#reporting-task-description-container').show();
|
||||
}
|
||||
|
||||
// populate the dom
|
||||
$('#reporting-task-type-name').text(reportingTaskType.label).ellipsis();
|
||||
$('#selected-reporting-task-name').text(reportingTaskType.label);
|
||||
$('#selected-reporting-task-type').text(reportingTaskType.type);
|
||||
|
||||
// show the selected reporting task
|
||||
$('#reporting-task-description-container').show();
|
||||
}
|
||||
});
|
||||
reportingTaskTypesGrid.onDblClick.subscribe(function (e, args) {
|
||||
|
|
Loading…
Reference in New Issue