11-16-2017 05:28 AM
Dear all,
My client wants to have the Email option automatically selected when notifying guests.
I am pretty sure this can be solved using java script.
Client is using ISE version 2.2 patch 1
Setup:
Client can create "known" guest accounts only, no import or random necessary.
After creating the account, the client wants to decide if client will be notified (email or print).
By default the Email option should be checked, "Copy to me" should be hidden.
Automatic email is not an option as sometimes the client don't have the mail address from guest.
Thanks and BR,
Stefan
Solved! Go to Solution.
11-17-2017 02:05 AM
Hi Stefan,
Could you please try these scripts:
<script>
setTimeout(function() {
$('.cisco-wizard-step:nth-child(3) .ui-grid-b .ui-block-c').hide();
$('.cisco-wizard-step:nth-child(3) .ui-grid-b .ui-block-b').hide();
}, 5000);
</script>
<script>
$('[href="#createKnownAccountNotify"]').on('click', function() {
setTimeout(function(){
$('[for="createKnownAccountNotifyFormEmail"] .ui-icon-checkbox-off').click()
$('[for="createKnownAccountNotifyFormCopyMe"]').hide()
$('#createKnownAccountNotifyFormCopyMe').hide();
}, 400);
});
</script>
You should to insert them into "Instructional text" of "Sponsor portal settings" customization page
Use 'Toggle to HTML' button.
Also you can increase/decrease delay for script.
Thanks.
11-16-2017 07:38 AM
WE will get back to you
11-17-2017 02:05 AM
Hi Stefan,
Could you please try these scripts:
<script>
setTimeout(function() {
$('.cisco-wizard-step:nth-child(3) .ui-grid-b .ui-block-c').hide();
$('.cisco-wizard-step:nth-child(3) .ui-grid-b .ui-block-b').hide();
}, 5000);
</script>
<script>
$('[href="#createKnownAccountNotify"]').on('click', function() {
setTimeout(function(){
$('[for="createKnownAccountNotifyFormEmail"] .ui-icon-checkbox-off').click()
$('[for="createKnownAccountNotifyFormCopyMe"]').hide()
$('#createKnownAccountNotifyFormCopyMe').hide();
}, 400);
});
</script>
You should to insert them into "Instructional text" of "Sponsor portal settings" customization page
Use 'Toggle to HTML' button.
Also you can increase/decrease delay for script.
Thanks.
11-17-2017 02:21 AM
Hi Serhii,
thank you so much, these scripts are working!
Thanks!
BR, Stefan
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide