application-manager-new
charithag 9 years ago
parent 7bf94fab00
commit 8f2c5aa9e7

@ -164,6 +164,9 @@ function loadDevices() {
} else { } else {
groups = data.data; groups = data.data;
} }
if (groups.length == 1 && groups[0].id == 0) {
$("#ast-container-parent").html($("#no-devices-div-content").html());
} else {
viewModel.groups = groups; viewModel.groups = groups;
var content = template(viewModel); var content = template(viewModel);
$("#ast-container-parent").html(content); $("#ast-container-parent").html(content);
@ -180,8 +183,6 @@ function loadDevices() {
} else { } else {
if (groupId && groupId != "0") { if (groupId && groupId != "0") {
content = $("#no-grouped-devices-div-content").html(); content = $("#no-grouped-devices-div-content").html();
} else if (groups[g].id == 0 && g == 0) {
content = $("#no-devices-div-content").html();
} else { } else {
content = $("#no-devices-in-group-div-content").html(); content = $("#no-devices-in-group-div-content").html();
} }
@ -194,9 +195,11 @@ function loadDevices() {
$(deviceCheckbox).click(function () { $(deviceCheckbox).click(function () {
addDeviceSelectedClass(this); addDeviceSelectedClass(this);
}); });
attachEvents(); attachGroupEvents();
attachDeviceEvents();
formatDates(); formatDates();
}); });
}
}; };
invokerUtil.get(serviceURL, invokerUtil.get(serviceURL,
successCallback, function (message) { successCallback, function (message) {
@ -260,7 +263,7 @@ function hidePopup() {
/** /**
* Following functions should be triggered after AJAX request is made. * Following functions should be triggered after AJAX request is made.
*/ */
function attachEvents() { function attachDeviceEvents() {
/** /**
* Following click function would execute * Following click function would execute
* when a user clicks on "Remove" link * when a user clicks on "Remove" link
@ -535,7 +538,7 @@ function attachGroupAdding() {
/** /**
* Following functions should be triggered after AJAX request is made. * Following functions should be triggered after AJAX request is made.
*/ */
function attachEvents() { function attachGroupEvents() {
/** /**
* Following click function would execute * Following click function would execute

@ -1,7 +1,7 @@
{{#each groups}} {{#each groups}}
{{groupMap this}} {{groupMap this}}
<div class="ast-container list-view"> <div class="ast-container list-view">
<div class="row wr-device-board list-view" style="font-size: inherit;"> <div class="row wr-device-board list-view" style="font-size: inherit; background: #fff;">
<div class="col-lg-12 wr-secondary-bar" style="width: inherit;"> <div class="col-lg-12 wr-secondary-bar" style="width: inherit;">
<label class="device-id device-select" style="font-size: 20px; margin-bottom: 0px;"> <label class="device-id device-select" style="font-size: 20px; margin-bottom: 0px;">
{{#if name}} {{#if name}}
@ -45,8 +45,8 @@
</div> </div>
{{/if}} {{/if}}
</div> </div>
<hr/>
</div> </div>
<hr/>
<div id="ast-container-{{id}}" class="ast-container devices-set list-view"> <div id="ast-container-{{id}}" class="ast-container devices-set list-view">
</div> </div>
<br/> <br/>

Loading…
Cancel
Save