CRM 2011 layoutxml schema
-
Freitag, 29. Juni 2012 19:13
In the example of addCustomView, http://msdn.microsoft.com/en-us/library/gg334266.aspx, I found the following code:
var layoutXml = "<grid name='resultset' " +
"object='1' " + "jump='name' " + "select='1' " + "icon='1' " + "preview='1'>" + "<row name='result' " + "id='accountid'>" + "<cell name='name' " + "width='300' />" + "<cell name='telephone1' " + "width='100' />" + "<cell name='address1_city' " + "width='100' />" + "<cell name='primarycontactid' " + "width='150' />" + "<cell name='accountprimarycontactidcontactcontactid.emailaddress1' " + "width='150' " + "disableSorting='1' />" + "</row>" + "</grid>";
While the meaning of each element is pretty self-explanatory, I still would like see a formal document describing the schema used here. Just like this page, http://msdn.microsoft.com/en-us/library/gg334364.aspx, has.Is there such a thing existing?
Thanks.
Alle Antworten
-
Freitag, 29. Juni 2012 19:56
It is part of the FetchXml schema:
http://msdn.microsoft.com/en-us/library/gg309405
--pogo (pat) @ pogo69.wordpress.com
- Als Antwort markiert Wei Ma - Vancouver Freitag, 29. Juni 2012 19:58
-
Freitag, 29. Juni 2012 19:58
Great! Never thought I could find it there. But weren't these elements for displaying only? Should they belong to something like "DisplayXML" instead of "FetchXml"?It is part of the FetchXml schema:
http://msdn.microsoft.com/en-us/library/gg309405
--pogo (pat) @ pogo69.wordpress.com
-
Freitag, 29. Juni 2012 20:03
You can find the Saved Query XML Reference in the following link.
- Als Antwort markiert Wei Ma - Vancouver Freitag, 29. Juni 2012 20:05
-
Freitag, 29. Juni 2012 20:05
Thanks. I think this is the answer.You can find the Saved Query XML Reference in the following link.