jquery datatables + jeditable从ajax源获取选择列表表单元格的数据

时间:2015-11-30 17:03:57

标签: javascript jquery ajax datatables

我最初从ajax调用填充了一个jquery数据表。数据表中有两列需要可编辑,并且在单个表格单元格中单击这两个特定列我想进行ajax调用以获取在表格单元格中填充的选择列表。

某些来源......

data      : function(value, settings) {
               $.ajax({
                    type:"GET",
                    url: JSON API call,
                    dataType:'json',
                    contentType: 'application/json; charset=utf-8',
                    success: function(response, status, error){                                               
                         console.log(response);
                         return response;
                    },                    
               });                                              
           },
type       : 'select',
onblur     : 'submit',
tooltip    : 'Click to edit...',
placeholder: ''

执行上述操作会引发错误:

  

未捕获的TypeError:无法读取属性'构造函数'未定义的

我确实在控制台中看到了响应数据:

样本回复数据:

Object {170: "170", 180: "180", 570: "570", 580: "580", 670: "670", 680: "680", 800: "800", 907: "907", 908: "908", "": ""}

我尝试过async:false,使ajax调用异步,效果相同。

有关使用jeditable设置动态ajax数据的想法的任何帮助将非常感激。

谢谢。

0 个答案:

没有答案