Dears
How I can show Working hours calendar to appear in the page load instead of press small arrow and hit working hours
So I need to let this calendar appear once the page load instead of press the small arrow and hit Work Hours
I used this code but it's not working I always get an error
function nafcontrol() {
Xrm.Page.ui.navigation.items.forEach(function (item, index) {
var itemLabel = item.getLabel();
if (itemLabel == "Work Hours")
{
//item.setVisible(false);
item.setFocus();
}
}
});
}
please help and thanks for advance
*This post is locked for comments