Category Archives: Dynamics 365

Editable Grids – The most awaited feature!! – Continued..

In our last article we started discussing Editable grid and we are continuing discussing some more features of editable grid here. So let’s start !! We discussed how to configure editable grid for views, similarly we can also apply editable grids to sub grid and perform inline editing. And once our changes published we can do inline editing in sub grids… Read more »

Editable Grids – The most awaited feature available now !!

With the release of Dynamics 365, now we have editable grid available out of the box, so no need to buy any custom add-on for inline editing. We can enable editable grid to views as well as to sub grids. We can add editable grid controls to all the entities which fulfill following condition: All the entities which is customizable… Read more »

Setup your Dynamics 365 Trial Today !!

Are you new to Dynamics 365/CRM and want to setup a quick trial? if yes, this article will help you. In this article we are going to provide quick steps to setup your Dynamics 365 trial, so let’s get started!! 1. Click here and enter basic details after entering your country. 2. Create user id for your organization and click… Read more »

Calculate Number of Days between two Dates in MS CRM

Some time we need to calculate number of days between two dates in crm, we can easily do this using below JS script var d1=crmForm.all.FirstDate.DataValue; var d2=crmForm.all.SecondDate.DataValue; var DayValue=1000*60*60*24; alert(Math.ceil((d2.getTime()-d1.getTime())/DayValue)); Update for Dynamics 365 var d1=Xrm.Page.getAttribute(“FirstDate”).getValue(); var d2=Xrm.Page.getAttribute(“SecondDate”).getValue(); var DayValue=1000*60*60*24; alert(Math.ceil((d2.getTime()-d1.getTime())/DayValue));