jQuery Table-Edit将表行从文本更改为选择

时间:2018-09-14 09:21:32

标签: jquery select

我有一个可编辑的表,我想将文本中的(4,'sub')更改为带有从数据库表中选择的选项的选择

$('#editable_table').Tabledit({
      url:'masrafsave.php',
      columns:{
       identifier:[0, "id"],
       editable:[[3, 'no'], [4, 'sub']]
      },
      restoreButton:false,
      onSuccess:function(data, textStatus, jqXHR)
      {
       if(data.action == 'delete')
       {
        $('#'+data.id).remove();
       }
      }
     });

0 个答案:

没有答案