Hi I am using the following function to change the tab order which works fine however it throws an error when I try to close the form. I'm thinking it is because I'm using "crmForm" which is for crm 4.0 but when I try whith "xrm.page" it doesnt work.
function OnCrmPageLoad()
{
//ReArangeTabIndex();
}
function ReArangeTabIndex()
{
/* for( var i = 0 ; i < crmForm.all.length ; i++ )
{
if( crmForm.all[ i ].tabIndex )
crmForm.all[ i ].tabIndex = 1000 + (i*10);
}*/
}
//OnCrmPageLoad();
The Redeemed 77