I want to run a javascript called espocrm. But there is no triggering.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Yakup Karakaya
    Junior Member
    • Dec 2024
    • 8

    I want to run a javascript called espocrm. But there is no triggering.

    I gave an example below

    // define('custom:views/contact/record/list', 'views/record/list', function (Dep) {
    // return Dep.extend({
    // setupActions: function () {
    // Dep.prototype.setupActions.call(this);
    // // Yeni bir seçenek ekleme
    // this.dropdownItemList.push({
    // action: 'customAction', // Yeni eylem ismi
    // label: 'Yeni Seçenek', // Görünen isim
    // data: {
    // id: function (model) {
    // return model.id; // İlgili satırın ID'sini alır
    // }
    // }
    // });
    // },
    // actionCustomAction: function (model) {
    // // Yeni seçenek tıklandığında yapılacak işlemler
    // alert('ID: ' + model.id + ' için yeni seçenek çalıştırıldı!');
    // }
    // });
    // });
  • yuri
    Member
    • Mar 2014
    • 8495

    #2
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    Comment

    Working...