Quantcast
Channel: Super Feed from MSCRM Technical Insight by Jonathan Nachman
Viewing all articles
Browse latest Browse all 130

OnClick Event For Bit field on a CRM Form

$
0
0

The onChange() event is great, however not great when you are using bit/tickbox type fields. The onChange only fires when you have tabbed away from the field - this is not correct for a bit field. The code behind it should be triggered directly after the click from the mouse.

Heres how you create the onClick() event for a bit field. (This will work for all types of fields, however is more useful on this type)

{codecitation style="brush: javascript;"}crmForm.all.mybitfield.onclick = function()
{
if (crmForm.all.mybitfield.DataValue == 1)
{
// Do something here when the value is checked

else 
{
// Do something here when the value is not checked!
}
}{/codecitation}

Enjoy

Jonathan


Viewing all articles
Browse latest Browse all 130

Trending Articles