Microsoft Dynamics has been nothing but a charm to work with. MS Dynamics CRM is a really good technology but lately everything starts to ... sucks?
Reading from many places i was aware that roll up 12 have some bugs, but i have one customer that works with CRM online and bam! get the update automatically two weeks ago.
And has been a nightmare.
No ribbon buttons support, many bugs all over... and yesterday, i wrote a script to disable a field, that mysteriously change the process form view (new view) to the classic view. Weird.
Does Anyone knows if the script design for ru12 has changed? or is it me and my script that is wrong.
function disablefield() {
//alert ("pass");
var disable = false;
var cc = Xrm.Page.getAttribute("field").getValue();
if (cc == 1) {
disable = true;
}
Xrm.Page.ui.controls.get("anotherfield").setDisabled(disable);
//alert ("pass");
}