JTable:如何更改,添加新的记录链接文本?(mvc 4.0)

1 asp.net-mvc jquery-jtable

如何更改+Add New RecordJ-Table中的默认链接文本?

fps*_*ton 7

直接来自JTable的作者,它是迄今为止实现这一目标的最佳方式.

 $('#MyTableContainer').jtable({

    messages: {
        addNewRecord: 'Add new whatever'
    },

    actions: {
        //Action definitions comes here
    },

    fields: {
        //Field definitions comes here
    }
}); 
Run Code Online (Sandbox Code Playgroud)