tips & tricks


Calendario
dicembre 2024
lmmgvsd
2526272829301
2345678
9101112131415
16171819202122
23242526272829
303112345

Come Impostare Obbligatorietà dei campi.

Questa funzione ci permette di settare dinamicamente nel crm se un campo lo vogliamo "business required" or "optional".

Create the function as below for crm3.0;
--------------------------------------------------

function crmForm.SetRequiredLevel(field, level)
{
field.req = level;
var fieldLabel = document.getElementById(field.id + "_c");

if (fieldLabel != null)
{
switch (level)
{
case 0: //normal
fieldLabel.className = "n";
break;
case 1: //recommended
fieldLabel.className = "rec";
break;
case 2: //required
fieldLabel.className = "req";
break;
}
}
}

--------------------------------------------------

Then call it using your field reference and the requirement level as needed.

--------------------------------------------------

crmForm.SetRequiredLevel(crmForm.all.fieldname, 2);

Categoria: CRM 3.0
venerdì, 04 lug 2008 Ore. 12.47
Archivio Posts
Anno 2020

Anno 2018

Anno 2015

Anno 2013

Anno 2011

Anno 2010

Anno 2009

Anno 2008
Statistiche
  • Views Home Page: 15.072
  • Views Posts: 58.272
  • Views Gallerie: 2.837
  • n° Posts: 117
  • n° Commenti: 1
Copyright © 2002-2007 - Blogs 2.0
dotNetHell.it | Home Page Blogs
ASP.NET 2.0 Windows 2003