I
IramK
Guest
Hello, I have selected the option of having the records View page to enable tabs and I have arranged different sections in their respective tabs. I have a tab that has a section called "History" and I would like to replace the Quick create button name in that section to be: "Add Item". I have used the code below and this runs on load of the tab but doesn't set the button name. Is there a way I can achieve this? Kindly let me know. Cheers. $(document).ready(function(){ var sectionID = rbf_getSectionIdByTitle("History"); sectionID = "#rbi_S_" + sectionID; var qcSpan = $(sectionID + " > ul > li > div > div > div > div > div.gridToolbarContainer > div.gridToolbar.k-toolbar.k-widget.k-toolbar-resizable > a.k-button.k-button-icontext.rbs-gridToolbar-QCbtn.k-toolbar-first-visible > span"); qcSpan.text("Add Item"); qcSpan.removeClass("k-sprite fa fa-plus"); });
Continue reading...
Continue reading...