小编Rob*_*bin的帖子

x-可编辑显示的事件下拉列表(<select />)源刷新

我正在尝试在显示之前更改x-editable源数据,以便即使源更改,我的下拉菜单条目也始终保持新鲜.

这是一个解释的链接:http://jsfiddle.net/XN7np/3/

// my source that can change over time
var source = [{'value': 1, 'text': 'fine'}, {'value': 2, 'text': 'bad'}];

$('#my_select').editable({
    'mode'  : 'inline',
    'source': source,
});

$('#my_select').on('shown', function(ev, editable) {
    // now changing my source just before dropdown is shown
    source = [{'value': 1, 'text': 'GOOD'}, {'value': 2, 'text': 'FU'}];

    //$(editable).editable('option', 'source', source); NOT WORKING
    //$('#my_select').editable('option', 'source', source); NOT WORKING
    //$(this).editable('option', 'source', source); NOT WORKING
});
Run Code Online (Sandbox Code Playgroud)

任何的想法?

javascript jquery drop-down-menu x-editable

2
推荐指数
1
解决办法
1万
查看次数

标签 统计

drop-down-menu ×1

javascript ×1

jquery ×1

x-editable ×1