How to call js function on record view of custom field

How to call js function on record view of custom field

Screenshot from 2016-04-13 19:54:26.png

Parents
  • You can add some events in record.js or recordlist.js like:

    ({

      extendsFrom: 'RecordlistView',  // or RecordView

      initialize: function (options) {

      this._super("initialize", arguments);

      this.events = _.extend({}, this.events, {

      'click [name="some_button_name_of_fieldname"]':'SomeFunction'

      });

      this.context.on('list:some_button_name_of_fieldname:fire', this.SomeFunction, this);

      }

      // ...

    })

  • Thanks All its working on RecordView .. and Same want to apply on Create ..

    i have create custom/modules/Mod_Name/clients/base/views/create/create.js

    ======  below code not working ..  what is wrong ..

    ({

         extendsFrom: 'CreateView',

        initialize: function(options) {

            this._super('initialize', [options]);

           this.model.on('change:lead_fields',this._updateLeads, this);

           this.model.on('change:template_module',this._updatetempmod, this);

        },

       

         _updateLeads: function(model)

         {

             

                 console.log("Lead Fields"); 

             desc = this.model.get("description");

             selectedval = this.model.get("lead_fields");

             setval = desc + ' ' + selectedval;

             this.model.set('description',setval);

             this.model.set('lead_fields',"");

             

        },

       

        _updatetempmod: function(model)

         {

          

                 console.log("Template Fields"); 

             this.model.set('description',"");

          

        },

    })

  • Try to use create-actions instead of create

    Before

    custom/modules/Mod_Name/clients/base/views/create/create.js

    After

    custom/modules/Mod_Name/clients/base/views/create-actions/create-actions.js

  • Hello , tried out the latest 7.7 version yet?

    This blog post suggests we should be using create now instead of create-actions https://developer.sugarcrm.com/2015/11/17/createactionsview-changes-in-sugar-7-7-0/  in sugar 7.7  can't seem to trigger any custom js on the create panel ~

    Tried all permutations possible of create / create-actions .js

    They don't reside in custom > modules > clients > base view anymore ?

Reply Children