mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
fixing location and operation loading ui issues
This commit is contained in:
parent
9d3949ea37
commit
eb7a83bcc8
@ -65,8 +65,6 @@
|
||||
{{description}}
|
||||
<br>
|
||||
</h4>
|
||||
<div style="height:200px" class="hidden" data-toggle="loading" data-loading-inverse="false"
|
||||
data-loading-text="Sending to device"></div>
|
||||
<div id="operation-form">
|
||||
<form action="{{params.0.uri}}" method="{{params.0.method}}"
|
||||
style="padding-bottom: 20px;"
|
||||
@ -106,12 +104,13 @@
|
||||
{{/equal}}
|
||||
{{/each}}
|
||||
<button id="btnSend" type="button" onclick="submitForm('form-{{operation}}')"
|
||||
class="btn btn-default"> Send
|
||||
to Device </button>
|
||||
class="btn btn-default">Send
|
||||
to Device</button>
|
||||
<label id="lblSending" class="wr-input-label hidden"><i
|
||||
class="fw fw-lifecycle fw-spin fw-2x"></i> Sending..</label>
|
||||
<label id="lblSent" class="wr-input-label hidden"><i
|
||||
class="fw fw-check fw-2x"></i> Sent</label>
|
||||
<i id="lbl-execution" class="fw fw-wso2-logo fw-pulse fw-2x hidden"> Executing Operation </i>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -28,10 +28,8 @@ function operationSelect(selection) {
|
||||
}
|
||||
|
||||
function submitForm(formId) {
|
||||
$("#operation-form").addClass("hidden");
|
||||
$('[data-toggle="loading"]').removeClass("hidden");
|
||||
$('[data-toggle="loading"]').loading('show');
|
||||
|
||||
$("#btnSend").addClass("hidden");
|
||||
$("#lbl-execution").removeClass("hidden");
|
||||
var form = $("#" + formId);
|
||||
var uri = form.attr("action");
|
||||
var deviceId = form.data("device-id");
|
||||
@ -75,8 +73,8 @@ function submitForm(formId) {
|
||||
description.html("");
|
||||
|
||||
var resetLoader = function () {
|
||||
$("#operation-form").removeClass("hidden");
|
||||
$('[data-toggle="loading"]').addClass("hidden");
|
||||
$("#btnSend").removeClass("hidden");
|
||||
$('#lbl-execution').addClass("hidden");
|
||||
};
|
||||
|
||||
var successCallBack = function (response) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user