Skip to main content

Posts

Showing posts from October, 2021

d365 portal How can I redirect to login page if not logged in

 Go to your form select Authentication Required Yes. In my case, I was using the Advance form.

d365 portal set browser tab title

 d365 portal browser tab title is the combination of 2 titles.  If you want to set the title portal for  every page like: Student Portal Class Portal  then you need to set the value into Browser Title Suffix If you do not want to use this text just remove it. For each page, title Go to your web page-> localized content->select the content page->change the title.

d365 portal form field set as hidden field.

 If you want to use the form field as a hidden field into the form you can use this. $(document).ready(function(){ $('#std_name').val(''); $('#std_name_label').hide(); $('#std_name').hide(); $('<input>', { type: 'hidden', id: 'std_name', name: 'std_name', value: '' }).appendTo('form'); }); At any event, you can set the value that will behave life form field.