您好我需要添加"保存"和"取消"可编辑表单按钮上的文本。有两种方法 1)使用"默认"主题
mainApp.run(function(editableOptions){
editableOptions.theme = 'default';
});
2)按照本例中的方式完成 http://jsfiddle.net/NfPcH/7474/
有什么方法可以使用" bs3"主题和全局配置,以便在编辑表单时保存和取消文本
mainApp.run(function(editableOptions){
editableOptions.theme = 'bs3';
});
答案 0 :(得分:2)
您实际上可以像这样覆盖按钮模板
app.run(function(editableOptions,editableThemes) {
editableOptions.theme = 'bs3';
editableThemes['bs3'].submitTpl = '<button type="submit">ok</button>';
});
我还创建了一个示例here