0
votes
1answer
50 views

Error if I choose not to fill a field value or Option Set value

ey guys, So basically I have couple of option sets from where I choose a value and based on those value I calculate the result. I have 7 option sets, but it is not necessary that all 7 are used. SO ...
1
vote
1answer
45 views

Prevent my version of JQuery from being used by another ISV

I had a customer come to me today with the issue that our JQuery file is interfering with another vendors product. The scenario is MS CRM 2011. We have some buttons in the ribbon that require ...
0
votes
1answer
65 views

Object not creating using module pattern of JavaScript in CRM 2011

I have devised the JavaScript logic as per module pattern for my CRM 2011 form. At the time of form load sometimes i get the alert as 'Crm object undefined' but upon refreshes (single or multiple) ...
0
votes
1answer
251 views

JSON data in MS CRM 2011

I'm having an issue using JOSN data in MS CRM 2011. I am using the correct REST syntax to pull the CRM data but my JavaScript is the remaining issue. What I want to do is append data from my JSON to ...
0
votes
1answer
150 views

How to change a lead id dynamically after cloning it in a crm?

In my Microsoft CRM I need to create a clone button that copies a lead as is so my users can modify few data in it then save it. I succeeded in adding the button to the ribbon and cloning my lead as ...
0
votes
1answer
720 views

how to use jquery in dynamics crm 2011 online?

Did anyone use an jquery for controlling form's attributes I'm interested in Expanding Textareas in forms of entities in Micrsoft CRM 2011 I found some pretty nice solution by using jquery so as to ...
1
vote
1answer
361 views

FancyBox (2.1.3) showing partial content in compatibility mode

I'm trying to embed fancybox onto a CRM2011 form do display a reference page. Problem is the content doesn't seem to fully render when in compatibility mode. Unfortunately I don't have any control ...
0
votes
2answers
297 views

Filtering an OptionSet based on another field selection

I have one optionSet named STATES. Another named RESTAURANTS. My goal is to filter the Restaurants optionSet according to what State is selected. My current method is to design the values of ...
1
vote
1answer
552 views

Xrm.Page.data is null

I have added a custom form on the opportunity entity and have some javascript attached to it. I'm calling the form using window.open and the formId in the url to open the form and is only used to ...
2
votes
2answers
732 views

Make Disabled Radiobuttons not greyed out (Behave as read-only)

I have a request from users to modify Microsoft CRM to make it's read-only fields not greyed out, but still read only. By inspecting the DOM I've learned that the radio controls are set as disabled. ...
-1
votes
1answer
249 views

Open CRM in a jquery UI Dialog

Is there a trick to getting a Microsoft Dynamic CRM page to load in a jquery UI dialog, it appears that AD authentication does not happen and a 401 is returned. Opening the site via window.open does ...
0
votes
1answer
498 views

retreiving collection of records from an entity in dynamic crm using REST and ajax

Looknig to retreive all accounts from the account entity and show this in an alert box using an ajax call to the Service OrganizationData.svc. This ajax call works fine with a post. as in, adding an ...
3
votes
1answer
6k views

how do you add jquery in a html page as a web resource in dynamics crm 2011

having a lot of trouble with this one. I am trying to run a simple jquery script inside of an html page to just pop up an alert box. I have uploaded the jquery library and the json library I have an ...
3
votes
3answers
4k views

How do you have multiple javascript libraries in Dynamics CRM 2011

Right I am creating a method which adds an Account to Dynamics CRM with an Ajax POST to a built in webservice, the code is as follows : var context = GetGlobalContext(); var ...
1
vote
2answers
955 views

Refreshing CRM Page Causes jQuery/Javascript Error

Ladies and gents, I have a CRM page which references 3 js files, (1x jQuery, 2x custom) all stored in the CRMInstall/isv/ folder. On the form OnLoad method, I am loading each one and then using it ...