= 'jQuery(document).ready(function ($) {
jQuery("#mainPriceTable").dynoTable({
removeClass: ".price-remove", //remove class name in table
cloneClass: ".price-clone", //Custom cloner class name in table
addRowTemplateId: "#productPriceRowTmpl", //Custom id for row template
addRowButtonId: "#add_new_price", //Click this to add a price
lastRowRemovable:true, //let the table be empty.
orderable:true, //prices can be rearranged
dragHandleClass: ".price_ordering", //class for the click and draggable drag handle
onRowRemove:function () {
},
onRowClone:function () {
},
onRowAdd:function () {
},
onTableEmpty:function () {
},
onRowReorder:function () {
}
});
});'