In SharePoint, the field is already configured as a calculated date with this formula: =Today+6-WEEKDAY(Today+4)
That works in the standard edit mode when adding a item, but that does not work in Nintex (Expression)
In SharePoint, the field is already configured as a calculated date with this formula: =Today+6-WEEKDAY(Today+4)
That works in the standard edit mode when adding a item, but that does not work in Nintex (Expression)
Best answer by lakshminarayana
You can use following JavaScript to set a date control default to Next Monday.
NWF$(document).ready(function()
{
var d = new Date();
var twoDigitMonth = ("0" + (d.getMonth() + 1)).slice(-2);
var currentDate = (d.getDate() + (1 + 7 - d.getDay()) % 7) + "/" + twoDigitMonth + "/" + d.getFullYear();
NWF$('#' + fldDateClosed).val(currentDate);
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.