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 } });
can please give me solution ?
Comments
Post a Comment