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ı!');
// }
// });
// });
// 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ı!');
// }
// });
// });
Comment