How can I turn OFF the meeting option in an IVS ?
The check box is grayed-out and i'm not able to disable the meeting.
Any Idea ?
You can try checking the "Select All" button and disabling it that way. If that's not an option you can execute a bit of javascript to enable the check box:
javascript:void(document.getElementsByName('chkSelectMeeting')[0].disabled=false)
The IVE may still have some sort of sanity check that will not allow you to actually disable it.
Grrrr forum software! That's a colon between javascript and void!