jquery - Yii Editable column not working on ajax call when filling empty grid -


i'm trying edit column in cgridview using x-editable extension. works fine when data preloaded. not work when empty grid filled data on ajax call.

$.ajax({     type: 'post',     url: '".$this->createurl('basecontact/upload')."',     data: data,      async: false,     cache: false,     contenttype: false,     processdata: false,     success: function(data)     {        $.fn.yiigridview.update('bcimported-grid');  //updating grid here                                }       }); 

enter image description here

can please give me solution ?


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - How can I echo out this array? -

javascript - IE11 incompatibility with jQuery's 'readonly'? -