mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Merge branch 'master' of https://github.com/wso2/carbon-device-mgt
This commit is contained in:
commit
1a1f79b1b4
@ -16,7 +16,18 @@
|
||||
under the License.
|
||||
}}
|
||||
{{unit "cdmf.unit.ui.title" pageTitle="Notification Listing"}}
|
||||
|
||||
{{#zone "breadcrumbs"}}
|
||||
<li>
|
||||
<a href="{{@app.context}}/">
|
||||
<i class="icon fw fw-home"></i>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="{{@app.context}}/notification-listing">
|
||||
Notifications
|
||||
</a>
|
||||
</li>
|
||||
{{/zone}}
|
||||
{{#zone "content"}}
|
||||
{{unit "cdmf.unit.notification.listing"}}
|
||||
{{/zone}}
|
||||
@ -186,14 +186,14 @@ $.fn.datatables_extended = function(settings){
|
||||
$(button).addClass("active").html('Cancel');
|
||||
$(button).parent().next().children("button").removeClass("disabled");
|
||||
// EMM related code
|
||||
$(".viewEnabledIcon").unbind("click");
|
||||
$(document).off('click','.viewEnabledIcon');
|
||||
//--- End of EMM related codes
|
||||
} else if ($(button).html() == 'Cancel'){
|
||||
thisTable.removeClass("table-selectable");
|
||||
$(button).addClass("active").html('Select');
|
||||
$(button).parent().next().children().addClass("disabled");
|
||||
// EMM related function
|
||||
$(".viewEnabledIcon").bind("click", InitiateViewOption);
|
||||
$(document).on('click','.viewEnabledIcon',InitiateViewOption);
|
||||
//--- End of EMM related codes
|
||||
}
|
||||
});
|
||||
|
||||
@ -21,10 +21,10 @@
|
||||
<div class="col-md-12">
|
||||
<!-- content -->
|
||||
<div id="config-save-form" class="container col-centered wr-content">
|
||||
<br>
|
||||
<h4> Device Notifications </h4>
|
||||
<br>
|
||||
<br>
|
||||
<h1 class="page-sub-title">
|
||||
Device Notifications
|
||||
</h1>
|
||||
</br>
|
||||
<div class="wr-advance-operations">
|
||||
<div class="row no-gutter">
|
||||
<div class="wr-hidden-operations-nav col-lg-4">
|
||||
|
||||
@ -65,7 +65,6 @@ function loadNotifications() {
|
||||
function showAdvanceOperation(operation, button) {
|
||||
$(button).addClass('selected');
|
||||
$(button).siblings().removeClass('selected');
|
||||
|
||||
if ($(button).attr("id") == 'allNotifications') {
|
||||
$("#ast-container").html('<div class="panel-body">You do not have any unread notifications </div>');
|
||||
} else if ($(button).attr("id") == 'unReadNotifications') {
|
||||
@ -73,7 +72,6 @@ function showAdvanceOperation(operation, button) {
|
||||
} else {
|
||||
$("#ast-container").html('<div class="panel-body">You do not have any notifications </div>');
|
||||
}
|
||||
|
||||
var hiddenOperation = ".wr-hidden-operations-content > div";
|
||||
$(hiddenOperation + '[data-operation="' + operation + '"]').show();
|
||||
$(hiddenOperation + '[data-operation="' + operation + '"]').siblings().hide();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user