-
Archives
- July 2022
- November 2021
- October 2021
- July 2021
- February 2021
- February 2020
- January 2020
- November 2019
- October 2019
- June 2019
- September 2018
- August 2018
- July 2018
- June 2018
- April 2018
- March 2018
- January 2018
- December 2017
- September 2017
- August 2017
- July 2017
- June 2017
- April 2017
- February 2017
- January 2017
- December 2016
- August 2016
- July 2016
- April 2016
- March 2016
- February 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
- June 2015
- May 2015
- January 2015
- December 2014
- November 2014
- October 2014
- September 2014
- August 2014
- July 2014
- June 2014
- May 2014
- April 2014
- January 2014
- December 2013
- November 2013
- July 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- May 2012
- April 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- February 2010
- January 2010
-
Meta
Category Archives: CRM
Better support for localised Portal web pages in new version of CRMQuickDeploy
Background When deploying Portal web pages, CRMQuickDeploy uses the web page’s name in CRM (and the filename of the project item) to identify the target web page for deployment. Since version 8 of CRM Portal however, we have the ability … Continue reading
Posted in CRM, CRM Portal, CRMQuickDeploy
Leave a comment
How to set value for date-time field by JavaScript in CRM Portal
Date-time fields in CRM Portal is a bit tricky when it comes to setting value dynamically using JavaScript. Behind the scene there are two HTML input fields that we need to worry about. First is the field that actually contains … Continue reading
Posted in Adxstudio, CRM, CRM Portal
3 Comments
How to edit related entity in CRM Portal web form step
In CRM Portal, different web form steps of a web form can operate on different entities. Imagine you have an Enrolment web form that allows students to enrol in courses. The first step of this form might capture student details … Continue reading
Posted in CRM, CRM Portal
Leave a comment
Loading entity form dynamically from JavaScript in CRM Portal
This has been tested on xRM Portal CE only. There may be times where you need to load and display an entity form by JavaScript in CRM Portal. For example, you may have a content page with a link that … Continue reading
Posted in CRM, CRM Portal
7 Comments
Get current entity logical name and record ID in CRM Portal forms using JavaScript
Use the following JavaScript to retrieve the current entity logical name and record ID in CRM Portal forms: For Entity Form: Entity logical name: $(“#EntityFormControl_EntityFormView_EntityName”).val() Record ID: $(“#EntityFormControl_EntityFormView_EntityID”).val() For Web Form Step: Entity logical name: $(“#EntityFormView_EntityName”).val() Record ID: $(“#EntityFormView_EntityID”).val() Tested on xRM … Continue reading
Posted in CRM, CRM Portal
Leave a comment
Leveraging built-in services in CRM Portal
On a recent project we decided to build a custom entity list using jQuery DataTables as the OOTB entity list did not meet our requirements. As part of this we needed to build a delete list item functionality that should … Continue reading
Posted in Adxstudio, CRM, CRM Portal
4 Comments
Changing Quick Find to perform ‘contains’ search in CRM
OOTB CRM Quick Find automatically appends a wildcard character (*) to the end of your query, and therefore effectively performs a ‘begins with’ search. If you searched for ‘Canberra’ for example, you’d find ‘Canberra Hospital’, ‘Canberra College’, etc., but you … Continue reading
Posted in CRM
Leave a comment
Querying many-to-many relationship in CRM Portal using JavaScript
How do you programmatically query an N:N relationship in CRM Portal using JavaScript without developing additional services? You can do this with FetchXml and Liquid, and a small hack. Here is a good walkthrough of using FetchXml in Liquid to … Continue reading
Posted in Adxstudio, CRM, CRM Portal
1 Comment
Reduce code duplication between Insert/Edit forms in CRM Portal with CRMQuickDeploy
CRM Portal is an interesting product, in a good way. One thing it doesn’t do very well however, is that a single Entity Form (or Web Form) cannot be used to handle both inserting and editing records for an entity. … Continue reading
Posted in Adxstudio, CRM, CRM Portal, CRMQuickDeploy
Leave a comment
Fixing issues with migrating Adxstudio/CRM Portal v8 using Configuration Migration tool
The Configuration Migration tool does a pretty good job at migrating Adxstudio/CRM Portal configuration in v7. There are some changes in Portal v8 however that are causing issues with this tool. This is true at least in the case for OnPrem … Continue reading
Posted in CRM, CRM Portal
4 Comments