mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Show the applied policies when click view button on policy compliance
This commit is contained in:
parent
513b8efaee
commit
3dcf19dffa
@ -40,4 +40,5 @@
|
|||||||
{{#zone "content"}}
|
{{#zone "content"}}
|
||||||
{{unit "cdmf.unit.device.operation-mod"}}
|
{{unit "cdmf.unit.device.operation-mod"}}
|
||||||
{{unit "cdmf.unit.effective-policy.view"}}
|
{{unit "cdmf.unit.effective-policy.view"}}
|
||||||
|
{{unit "cdmf.unit.lib.data-table"}}
|
||||||
{{/zone}}
|
{{/zone}}
|
||||||
@ -76,25 +76,26 @@ var displayPolicy = function (policyPayloadObj) {
|
|||||||
var policyOperationsStylesSrc = context + '/public/cdmf.unit.device.type.' + deviceType +
|
var policyOperationsStylesSrc = context + '/public/cdmf.unit.device.type.' + deviceType +
|
||||||
'.policy-view/css/' + deviceType + '-policy-view.css';
|
'.policy-view/css/' + deviceType + '-policy-view.css';
|
||||||
var policyOperationsTemplateCacheKey = deviceType + '-policy-operations';
|
var policyOperationsTemplateCacheKey = deviceType + '-policy-operations';
|
||||||
|
|
||||||
$.isResourceExists(policyOperationsTemplateSrc, function (status) {
|
if (policyOperationsTemplateSrc) {
|
||||||
|
if (policyOperationsScriptSrc) {
|
||||||
|
var script = document.createElement('script');
|
||||||
|
script.type = 'text/javascript';
|
||||||
|
script.src = policyOperationsScriptSrc;
|
||||||
|
$(".wr-advance-operations").prepend(script);
|
||||||
|
}
|
||||||
$.template(policyOperationsTemplateCacheKey, policyOperationsTemplateSrc, function (template) {
|
$.template(policyOperationsTemplateCacheKey, policyOperationsTemplateSrc, function (template) {
|
||||||
var content = template();
|
var content = template();
|
||||||
$("#device-type-policy-operations").html(content).removeClass("hidden");
|
$("#device-type-policy-operations").html(content).removeClass("hidden");
|
||||||
$(".policy-platform").addClass("hidden");
|
$(".policy-platform").addClass("hidden");
|
||||||
$.isResourceExists(policyOperationsScriptSrc, function (status) {
|
if (policyOperationsScriptSrc) {
|
||||||
var script = document.createElement('script');
|
|
||||||
script.type = 'text/javascript';
|
|
||||||
script.src = policyOperationsScriptSrc;
|
|
||||||
$(".wr-advance-operations").prepend(script);
|
|
||||||
/*
|
/*
|
||||||
This method should be implemented in the relevant plugin side and should include the logic to
|
This method should be implemented in the relevant plugin side and should include the logic to
|
||||||
populate the policy profile in the plugin specific UI.
|
populate the policy profile in the plugin specific UI.
|
||||||
*/
|
*/
|
||||||
polulateProfileOperations(policyPayloadObj["profile"]["profileFeaturesList"]);
|
polulateProfileOperations(policyPayloadObj["profile"]["profileFeaturesList"]);
|
||||||
});
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$.isResourceExists(policyOperationsStylesSrc, function (status) {
|
$.isResourceExists(policyOperationsStylesSrc, function (status) {
|
||||||
var style = document.createElement('link');
|
var style = document.createElement('link');
|
||||||
style.type = 'text/css';
|
style.type = 'text/css';
|
||||||
@ -104,7 +105,7 @@ var displayPolicy = function (policyPayloadObj) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
$(".wr-advance-operations-init").addClass("hidden");
|
$(".wr-advance-operations-init").addClass("hidden");
|
||||||
});
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user