When adding a page navigation link, we have the options to set the URL to use to a web resources or an external link. When using either one, we may want to be able to pass a parameter on the URL, but this option is not available from the customization form interface. To address this, I use our old good friend JavaScript to handle the injection of parameters on the URL.
The first step is to...
2/13/14
MSCRM Create Password Field with JavaScript
Dynamics CRM does not currently provide the ability to add
password fields to a form. With this script, we show a way to make an input
field on an Entity Form to be of type “Password”.
OGBIT.PasswordField
= {
Init: function (fields) {
var ids = fields.split(';');
for (var idx in ids)...