• How do I edit a dropdown value via API

    I am wanting to edit the value of a dropdown field that was created. However, whenever I try to edit the value via the API, it always selects the same value. I wrote a python function function to send the API request (below). I do not receive errors…
  • Help Popups

    Is there a clever way to show a Pop up or tool tip for items in a Dropdown list ?
  • Regarding 3 dependent drop-down

    Dear All, Adding 3 dependent drop-down in my project with the help of coding in PHP . my current drop-down having 3 list items and currently working on depends only one but I want to change in drop-down depends on rest another category.
  • Issue found - we have two production instances. SugarCRM, Version 10.3.0 (Build 222p) (Q1 2021) and SugarCRM, Version 10.3.0 (Build 222) (Q1 2021).

    We have found we have two production instances. SugarCRM, Version 10.3.0 (Build 222p) (Q1 2021) and SugarCRM, Version 10.3.0 (Build 222) (Q1 2021). We noticed some recent changes in drop down fields are not in the other version. SugarSupport are…
  • Pitfalls to Converting Dropdowns to the MySQL enum type

    I have run some tests on our production data and the results look promising. I want to convert all my dropdowns to actual MySQL enum type from the current VarChar types. I am rewriting the MySQL code in Sugar to support this so my QRRs and any New Dropdowns…
  • How We can display drop down database value to Lable value.?

    How we can display drop down database value to Lable value. Ex. db value -1(db) - New(Label) 2 (db) - In progress (Label) 3 (db) - Working (Label) 4 (db) - Close (Label) 5 (db) - Pending (Label) i want to display new
  • How to manually create dependent dropdowns

    The documentation section Manually Creating Custom Fields provides a good description of creating fields using the module loader, including dropdowns. But how can I do the same thing for dependent dropdowns, where I need to specify a parent dropdown and…
  • zero keys in dropdown list

    When creating a dropdown list from studio or by code, is there any chance to have a zero (0) as a key? I tried creating dropdown entries with key 0 and a non empty value, but the value gets removed as soon as I save the list. I have debugged the code…
  • Custom Enum (dropdown) Fields and Select2 Fields

    This is a question and tutorial combined. The question is, can I do something similar to Relate inputs like Enum (dropdown) inputs? So after some scrounging around and figuring out of some custom features and extending features, I've come across the way…
  • Is it possible to modify EnumField to support deprecated values?

    Hello, I have a drop down field which id like to make one of the list values available to view on existing records, but no longer selectable when a record is edited or a new record is created. My current plan is to modify the javascript to remove any…
  • Custom dropdown field appearing as multi-select field

    Hello. I followed the steps in this link to create a custom dropdown field: HOWTO: Add a search field that searches another module « Sugar Developer Blog – SugarCRM array ( 'name' => 'ano_padv', 'label' => 'Ano', 'type' => 'enum', 'default' => true…
  • "Data not available" error message after editing custom dropdown field

    I'm working in a 7.6.1.0 Sugar Professional instance. I created the dropdown field sales_person_c in the Accounts module, which will later list all the users with certain roles. To accomplish this I replaced the field vardefs with the following: $dictionary…
  • Hide related field depending on the value of a Dropdown List(or other logic)?

    Hello I wanted to hide two fields depending on a dropdown value: System: Sugar Enterprise 7.8 Scenario: Module where I want to hide: moduleA On record/create view there is a dropdown: docType (values: typeB, typeC, both, none) There is two related modules…
  • how to retrieve list of valid field options from client?

    When setting drop down fields from the client, how can I retrieve the list or map of valid field options? On the record model at model.fields['my_field_name'].options there seems to be a key for the list I need to lookup, is that correct? If so, where…
  • Translate in another language than the current language

    I have tricky a use case, where I need to create a custom entity from an opportunity plus some external data. In the opportunity, there's a custom dropdown, whose value will be transferred as text to a textfield in the custom entity. This text value …