Answered by:
disable form assistant crm 2011

Question
-
Hey,
How can i disable form assistant panel in incident form ?
I have found this xml code but i dont know how and where to set it?
<form> (FormXML)
enablerelatedinformation
attribute to false.thx for answers
Software Specialist CrmThursday, December 8, 2011 11:08 AM
Answers
-
This is set by customising the form xml. In short:
- Create a solution
- Put the incident entity in it
- Export the solution
- Open up the customisations.xml file in a text editor, edit the "enablerelatedinformation" attribute to false.
- Save the file
- Upload the file back into the crm solution zip file
- Import the solution
- Publish the incident entity
The SDK article http://msdn.microsoft.com/en-us/library/gg334527.aspx gives the full guide on editing form xml. There is also a way to do this with JScript using the document object.
document.getElementById('tdRelatedInformationPane').style.display = 'none';
Paul Dowman, CRM Developer- Proposed as answer by Paul Dowman Thursday, December 8, 2011 12:00 PM
- Marked as answer by Ahmet Çankaya Thursday, December 8, 2011 12:10 PM
Thursday, December 8, 2011 12:00 PM
All replies
-
This is set by customising the form xml. In short:
- Create a solution
- Put the incident entity in it
- Export the solution
- Open up the customisations.xml file in a text editor, edit the "enablerelatedinformation" attribute to false.
- Save the file
- Upload the file back into the crm solution zip file
- Import the solution
- Publish the incident entity
The SDK article http://msdn.microsoft.com/en-us/library/gg334527.aspx gives the full guide on editing form xml. There is also a way to do this with JScript using the document object.
document.getElementById('tdRelatedInformationPane').style.display = 'none';
Paul Dowman, CRM Developer- Proposed as answer by Paul Dowman Thursday, December 8, 2011 12:00 PM
- Marked as answer by Ahmet Çankaya Thursday, December 8, 2011 12:10 PM
Thursday, December 8, 2011 12:00 PM -
Hi,
You can hide the form assistant use following code:
document.getElementById('tdRelatedInformationPane').style.display = 'none';
See more detail here.- Edited by Sergey Chereshnyuk Thursday, December 8, 2011 12:07 PM
Thursday, December 8, 2011 12:05 PM -
Umm Sergey - isn't that what I just posted? :o)
Paul Dowman, CRM DeveloperThursday, December 8, 2011 12:09 PM -
Umm Sergey - isn't that what I just posted? :o)
yh first solution method which u explained step by step thx lots :)
Paul Dowman, CRM Developer
Software Specialist Crm- Edited by Ahmet Çankaya Thursday, December 8, 2011 12:11 PM
Thursday, December 8, 2011 12:10 PM -
I'm sorry...Thursday, December 8, 2011 12:19 PM