Browse By Tags

  • client side api not available when linking lead to company

    Hey guys, I'm using some of the client side api functionality in my Company New Entry screen (both Custom Content and OnChange Scripts). Everything is working fine when creating/editing a company, but when I go to a Lead record and try to create a new…
  • Setting value on Checkbox

    7.3a On quoteitems summary page, when the user selects a product. if productid is a certain value a checkbox on the summary must be checked. I'm trying to do this using the client side API. It doesn't work, the product submit method is breaking…
  • Can the crm.sdata be used to push a value into another field on the EntryForm?

    Hello, I have modified the SData code slightly from the original example 1 on the api help site and it works except.. when there is a space in the option value eg: "SUMMER BALL", it is ignored. If the value is one word "SUMMERBALL" is works. I understood…
  • Select List Option and Trigger Input of Value

    Hello, I am hoping to have an option in a normal select field selected and the value chained in the statement, entered directly to a integer field. I am not able to trigger the update on selection until the screen is submitted - saved and then…
  • Sdata / JSON doesnt work locally only externally.

    Hello, I have a small JSON script which retrieves a list of records. This script works perfectly when CRM is accessed externally but doesnt work at all when CRM is accessed internally. By internally, i mean accessing CRM locally on a machine (PC or…
  • Client side issue

    I have created a custom entity and I can get to all of the fields except one via the client side API. the field is status. bldg_Status to be exact. crm('bldg_Status').text() or .value() or .anything yields undefined response if I use jquery $…
  • Sage CRM 7.2 - How to hide Phone and replace with Mobile Number on Person top content screen

    Hi, Anyone know how to hide "Phone" (in red square) and replace with "Mobile Number" (in green square) from Person top content screen. I can manage to put mobile number on screen but how to hide "Phone"? I did some research and found that someone…
  • Sage CRM 7.2 - Hide Phone and replace with Mobile Number on Person top content screen

    Hi, Anyone know how to hide "Phone" (in red square) and replace with "Mobile Number" (in green square) from Person top content screen. I can manage to put mobile number on screen but how to hide "Phone"? I did some research and found that someone…
  • Client side API

    I am writing a new Javascript using the Sage CRM Client side API, I use the crm.ready() function and test using the Chrome developer console, I get an error Uncaught ReferenceError: crm is not defined , I am using CRM 7.2C, am I missing some thing while…
  • Jquery Collapse Show in IE9

    Anyone have experience using collapse and show in IE 9 successfully? example: on change if (crm('mychange').value()) { crm('myfield1 myfield2').show(); } else { crm('myfield1 myfield2').collapse(); } In IE9 at least, after fields…