Category Archives: Info

Dynamic Forms for SharePoint v4: User manual

All users who buy a license for DFFS v4 will receive a 30 pages complete manual describing all settings.

Already have a DFFS v3.x license?

Users who have an existing DFFS v3.x license are also entitled to receiving this manual. You must drop me an email, and include the original license code.

Licens codes in the user profile

For registered forum users I add the license codes to the user profile. You can access this by clicking your name in the top right corner and selecting “Edit My Profile”.

For users with a DFFS v3.x license I’ll need you to send me a request for adding this code to the profile. Include the original license code in the email.

Register for a forum user

You find the link to sign up for a user account here.

My email address

You find my email address in the “About me” tab in the top link bar in this page.

Where can I buy a license?

See the “Products” menu in the top of this page.

All questions regarding DFFS v4 must be added to the forum

DFFS v4 forum

Alexander

New theme

Hi,
An update broke my old site theme and I had to change it. I’m not happy with the layout, but will try to fix it during the weekend.

Unfortunately the archives page also broke – I will fix it as soon as I can manage.

Alexander

SharePoint 2013 with IE11: L_Menu_BaseUrl and L_Menu_LCID are undefined

In many of my solutions I have used two variables (L_Menu_BaseUrl and L_Menu_LCID) that SharePoint provides trough the master page. Unfortunately these variables disappeared when I updated to IE 11, thus halting all the scripts using them with this error:

‘L_Menu_BaseUrl’ is undefined
‘L_Menu_LCID’ is undefined

This problem is present in SP2013 in IE11 only, and the strange thing is that if you switch on the compatibility mode (or changes the user agent string using F12) the variables return.

As a workaround, put the site in compatibility mode (Tools menu in IE), or insert this code in the top of the script that produces this error:

if(typeof _spPageContextInfo !== "undefined" && _spPageContextInfo.webUIVersion === 15){
	var L_Menu_BaseUrl = L_Menu_BaseUrl || _spPageContextInfo.webServerRelativeUrl !== "/" ? _spPageContextInfo.webServerRelativeUrl : "";
	var L_Menu_LCID = L_Menu_LCID || _spPageContextInfo.currentLanguage.toString();
}

I will update scripts as soon as I can manage.

Alexander