Forum Post: Re: Setting The Quick Create Button To A Name - New Ui

  • Thread starter Thread starter Sri Harsha
  • Start date Start date
Status
Not open for further replies.
S

Sri Harsha

Guest
Hi Iram, Below is one way you can achive what you are looking for. In the view page's properties, define the following snippet in the onLoad section. var onActivate = function(e) { var gridToolbar = $('.gridToolbarContainer'); if(gridToolbar) { var qcSpan = gridToolbar.find('.rbs-gridToolbar-QCbtn > span'); qcSpan.removeClass(); qcSpan.text('Add Item'); } }; var tabStrip = $('.rbs-page-tabs').data('kendoTabStrip'); tabStrip.bind('activate',onActivate); Please let usknow if this works for you. Regards, Harsha.

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