在按钮上添加文字角x可编辑

时间:2015-09-29 18:00:27

标签: angularjs twitter-bootstrap-3 x-editable

您好我需要添加"保存"和"取消"可编辑表单按钮上的文本。有两种方法 1)使用"默认"主题

 mainApp.run(function(editableOptions){      
       editableOptions.theme = 'default'; 
});

2)按照本例中的方式完成    http://jsfiddle.net/NfPcH/7474/

有什么方法可以使用" bs3"主题和全局配置,以便在编辑表单时保存和取消文本

mainApp.run(function(editableOptions){   
           editableOptions.theme = 'bs3'; 
    });

1 个答案:

答案 0 :(得分:2)

您实际上可以像这样覆盖按钮模板

app.run(function(editableOptions,editableThemes) {
      editableOptions.theme = 'bs3';
      editableThemes['bs3'].submitTpl = '<button type="submit">ok</button>';
});

我还创建了一个示例here