Browse By Tags

  • Multi-Select for non Multi-select field

    Is there any way to have a multi-select option (red example) in a find screen for a non multi-select field (yellow)? As per the example below. Thanks! Anthony
  • Using an IF statement with a multi-select field in an OnChange Script

    Hi Everybody, I hope someone can help me understand how to use an IF statement with a Multi-Select field in an OnChange script. This basic IF statement can determine whether Blue has been selected in a Text or Selection field. if (oppo_color.value…
  • Changing the Display of Multi Select fields using the Client Side API

    This article has been prompted by a customer who had a requirement to change the default display of a multiselect field. This article uses the Client Side API. The default display of a field is shown below. The default display shows the data in…
  • An essential guide to Selection Lists and Intelligent Selects: A round up of articles that discuss selection entry types

    Sage CRM allows fields to be defined for the interface that are defined from a wide range of different entry types. The entry types in Sage CRM control the field behaviour, the type of data that may be entered and how the field is rendered as HTML in…
  • Updating Multiselect fields using the Web Service Interface

    Below are two ways to achieve this. First is the UpdateACompany method that shows how to do it using the update method. The second is UpdateACompanyRecord, this shows how to do it with the updaterecord method. The code examples are in C#. 'binding…
  • Multi-Select Field Size

    I apologise if this is covered somewhere but I cannot find the answer anywhere. When creating a new multi-select field the actual field within the database is created with a data type of nvarchar(255). This means that if you combined multi-select values…
  • Update Multiselect field using PHP via SOAP

    I'm creating a PHP application that adds and updates data in CRM (version 7.1). Here is the code snippet that I'm using for updating fields: $update_data = array("personid"=>$person_id_in_crm, "interestedin"=>$product); $update_var = new SoapVar($update_data…