最近因為希望CRM中加入一些JavaScript進行操作,故上篇寫了[SuiteCRM]加入JavaScript,這次來寫關於Vtiger的部分…
主要針對Contacts聯絡人模組進行,其實其他模組可以同理操作.
1.找到對應模組中的layouts模組,這邊採用VtigerCRM7
1 |
cd CRM目錄/layouts/v7/modules/Contacts/resources |
2.裡面會有Detail.js與Edit.js,顧名思義,您想對編輯畫面加入的話,就在Edit.js加入即可
3. 約在196行後,編寫客製化的JS
1 2 3 4 5 6 |
........... registerBasicEvents: function (container) { this._super(container); this.registerEventForCopyingAddress(container); this.registerRecordPreSaveEvent(container); this.registerReferenceSelectionEvent(container); } }) //加入您需要的JavaScript ...... //End |