Is it possible to remove the "drop down" option?
Is it possible to change this so that the analyst has to type in some search criteria rather than allowing them to drop down and see all the options? We are having a couple of problems where people just pick the first option rather than what they should!
Best Answer
-
Shane_White Cireson Support Super IT Monkey ✭✭✭✭✭Hi @Tina_Sams
Just for your information you could remove this from the Analysts so they would not see the create request on behalf of by changing the AD group that has access in the portal settings, just go to
Admin Setting > Setting Items >
You could also hide the drop-down arrow by using the below JavaScript:$(document).ready(function () {var mainPageNode = document.getElementById('main_wrapper');var observer = new MutationObserver(function(mutations) {var dropDown = $('.k-select')//console.log(KBelement);if (dropDown.length > 0) { //An Element ExistsdropDown[0].style.display = 'none';observer.disconnect();}});// configure the observer and start the instance.var observerConfig = {attributes: true, childList: true, subtree: true, characterData: true };observer.observe(mainPageNode, observerConfig);});
Hopefully helps
Thanks,
Shane.5
Answers
Just for your information you could remove this from the Analysts so they would not see the create request on behalf of by changing the AD group that has access in the portal settings, just go to
Admin Setting > Setting Items >
You could also hide the drop-down arrow by using the below JavaScript:
Hopefully helps
Thanks,
Shane.