[progress Communities] [progress Openedge Abl] Forum Post: Re: Perform A Click On The Clone...

Status
Not open for further replies.
M

Mohammed Siraj

Guest
Rollbase is not really open to this level of customization. Request you to file an Enhancement Request in IDEAS section for the same. However, you can employ the following scripting solution to make it work. var kToolbar = $('div.rbs-pageheader-toolbar').data('kendoToolBar'); if(!kToolbar){ return; } var opts = kToolbar.options; opts.click = function(e){ //intercept click event... console.log("click", e.target.text()); return false; }; kToolbar.setOptions(opts);

Continue reading...
 
Status
Not open for further replies.
Top