)" location when submitting changes using x-editable in yii-6ren"> )" location when submitting changes using x-editable in yii-当我尝试确定 x-editable 中的值时,出现以下异常。 [异常...“”nsresult:“0x805e0006()”位置:“JS框架:::.send::第8400行”数据:否] Vie-6ren">
gpt4 book ai didi

jquery - 异常 nsresult : "0x805e0006 ()" location when submitting changes using x-editable in yii

转载 作者:行者123 更新时间:2023-12-01 06:34:51 25 4
gpt4 key购买 nike

当我尝试确定 x-editable 中的值时,出现以下异常。 [异常...“”nsresult:“0x805e0006()”位置:“JS框架:::.send::第8400行”数据:否]

    View Code:

<?php $this->widget('bootstrap.widgets.TbGridView', array(
'id' => 'subjectgrid',
'itemsCssClass' => 'table-bordered items',
'dataProvider' => new CActiveDataProvider('Examschedule',array(
'criteria'=>array('condition'=>"examcode=:newexam and sessioncode=:sessioncode",
'params'=>array(':newexam'=>$examcode, ':sessioncode'=>$sessioncode),),
'pagination'=>array('pageSize'=>15),)),

'columns'=>array(
array('name' => 'examcode', 'headerHtmlOptions' => array('style' => 'width: 10px'),),
array('name' => 'sessioncode', 'headerHtmlOptions' => array('style' => 'width: 10px'),),
array('name' => 'subjectcode', 'headerHtmlOptions' => array('style' => 'width: 10px'),),
array('name' => 'groupcode', 'headerHtmlOptions' => array('style' => 'width: 10px'), ),

array('class' => 'editable.EditableColumn', 'name' => 'dateofexam', 'headerHtmlOptions' => array('style' => 'width: 10px'),
'editable' => array('type' => 'date', 'viewformat' => 'dd-mm-yyyy',
'url' => 'Yii::app()->createUrl("examschedule/update",array("examcode"=>$examcode, "sessioncode"=>$sessioncode, "subjectcode"=>$data->subjectcode))',
'placement' => 'right',) ),

array('class' => 'editable.EditableColumn','name' => 'sitting', 'headerHtmlOptions' => array('style' => 'width: 10px'),
'editable' => array('type' => 'select', 'source'=>array('1'=>'First Sitting', '2'=>'Second Sitting'),
'url' => 'Yii::app()->createUrl("examschedule/update",array("examcode"=>$examcode, "sessioncode"=>$sessioncode, "subjectcode"=>$data->subjectcode))',
'placement' => 'right', ) ),
),
));
?>

最佳答案

这是一个神秘的错误,可能是一个简单的问题 - 您尝试访问的资源无法命中。如果你输入一个无意义的 URL,你就会得到这个结果。此外,如果浏览器中运行某种连接阻止程序(例如广告阻止应用程序),您也会收到此消息。

我会检查您尝试访问的 URL,方法是将其转储到文本中并手动尝试查看是否可以访问该资源。

关于jquery - 异常 nsresult : "0x805e0006 (<unknown>)" location when submitting changes using x-editable in yii,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19241605/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com