在Bootstrap X-editable中添加加载程序图像/文本

时间:2014-09-22 06:18:27

标签: jquery html ajax twitter-bootstrap x-editable

如何在发出更新请求时将加载程序gif放入X-editable中?

这是我的代码:

$(document).ready(function() {
    $('#username').editable();
});

<a href="#" id="username">superuser</a>

$('#username').editable({
    type: 'text',
    pk: 1,
    url: '/post',
    title: 'Enter username'
});

1 个答案:

答案 0 :(得分:2)

X-editable默认带有加载程序gif。

只需确保加载程序gif是以下路径:

/img/loading.gif

如果您希望提供loader.gif的自定义路径,

修改editable-form.css文件中的以下行line 42

.editableform-loading {  
    background: url('../img/loading.gif') center center no-repeat;  
    ...