Tag Archives: Dynamics CRM

Dynamics CRM: get all updated fields in javascript

I got somewhat strange form behaviour in Dynamics CRM this morning – for whatever reason, at attempt to close one of the phone call records kept brining up a “do you want to save the updates?” dialog. It did not … Continue reading

Posted in Dynamics CRM, Twitted | Tagged , , | Leave a comment

Dynamics CRM: You can.. call a plugin from javascript.

It’s been generally accepted that Dynamics CRM does not allow us to call plugins from javascripts. And, generally speaking, we can’t call just any plugin from javascript. However, we can still make use of CRM plugins in a little unusual … Continue reading

Posted in Dynamics CRM, Twitted | Tagged , | Leave a comment

Different faces of Dynamics CRM

I have to admit I’ve been in the trenches, and that’s been happening for quite a long time since I’ve managed to miss this announcement: “What did CWR Mobility and Microsoft announce? CWR Mobility and Microsoft announced on February 6, … Continue reading

Posted in Dynamics CRM, Twitted | Tagged , | Leave a comment

The remote server returned an error: (407) Proxy Authentication Required.

A couple of applications I used to believe should always work came up with the same sort of surprise this week. What would you say(or think) if BIDS started to display “407 proxy authentication required” error whenever you tried to … Continue reading

Posted in Dynamics CRM | Tagged , | Leave a comment

Dynamics CRM Portals: Editable grid

Earlier today, I wanted to see if I could make an editable gridview using Dynamics CRM portal libraries. So, I pretty much followed portal walkthrough to create a project, and I ended up with the following aspx markup: <crm:CrmDataSource ID=”Contacts” … Continue reading

Posted in .NET, Dynamics CRM, Twitted | Tagged , | Leave a comment

Dynamics CRM Portals: Could not load file or assembly AntiXssLibrary

If you happen to try this walkthrough: Walkthrough: Build a Web Application That Connects to Microsoft Dynamics CRM 2011 Using Developer Extensions you might find yourself looking at the following error: Could not load file or assembly ‘AntiXssLibrary, Version=4.0.0.0, Culture=neutral, … Continue reading

Posted in .NET, Dynamics CRM, Twitted | Tagged , | Leave a comment

Quick javascript handlers for Dynamics forms

I was working on a Dynamics CRM solution where quite a number of forms required simple javascript event handlers to change visibility of various form controls. What I needed in development, though, is a simple way of modifying such javascripts. … Continue reading

Posted in Dynamics CRM, Twitted | Tagged , | Leave a comment

Adding HTML to the Dynamics CRM form

Just had to come up with a generic version of javascript code that replaces web resource control with my own html: function replaceControlHtml(fldName, html){    var ctrl = Xrm.Page.ui.controls.get(fldName)._control.get_element().childNodes[1];   ctrl.innerHTML = html; } So, if I wanted to add HTML … Continue reading

Posted in Dynamics CRM, Twitted | Tagged | 1 Comment

Dynamics CRM: Monitoring case age

For such entities as cases it may be quite useful to have the ability to display the list of entities based on their age in days. There could be various usage scenarios for that.. For example, it is not unusual … Continue reading

Posted in Dynamics CRM, Twitted | Tagged | Leave a comment

Dynamics CRM: tracking token in the email body

Back in AVIcode we used to rely on SalesForce when communicating technical issues to the customers over email. Unlike with Dynamics CRM, however, we did not have to put those cumbersome tracking tokens in the subjects of our emails. Rather, … Continue reading

Posted in Dynamics CRM, Twitted | Tagged | 1 Comment