简体   繁体   English

在Yii2中安装可编辑的kartik-v

[英]install kartik-v editable in Yii2

I'm new in Yii 2! 我是Yii 2的新手! I install the kartik grid in my basic yii and create a grid with no problem . 我在基本yii中安装了kartik网格,并毫无问题地创建了一个网格。 now I want to use 现在我要使用

kartik\\grid\\EditableColumn 卡尔蒂克\\网\\ EditableColumn

but it needs : 但它需要:

\\kartik\\editable\\Editable \\卡尔蒂克\\编辑\\编辑

i insatll the Editable via composer and now i cas see that directory in my vendor file : my vendor file 我通过作曲家安装了可编辑文件,现在我在卖方文件中看到该目录: 我的卖方文件

now the system gives me this Error again : 现在系统再次给我这个错误:

Invalid Configuration – yii\\base\\InvalidConfigException 无效的配置– yii \\ base \\ InvalidConfigException

The class '\\kartik\\editable\\Editable' was not found and is required for GridView EditableColumn. 找不到类'\\ kartik \\ editable \\ Editable',它是GridView EditableColumn所必需的。

Please ensure you have installed the 'yii2-editable' extension. 请确保您已安装“ yii2-editable”扩展名。 To install, you can run this console command from your application root: 要安装,可以从应用程序根目录运行以下控制台命令:

php composer.phar require kartik-v/yii2-editable: "@dev" php composer.phar需要kartik-v / yii2-editable:“ @dev”

and my code : 和我的代码:

//morecodes
<?= GridView::widget([
        'dataProvider'   => $dataProvider,
        'filterModel' => $searchModel,
        'columns' => [
            ['class' => 'kartik\grid\SerialColumn'],
            ['class' => 'kartik\grid\CheckboxColumn'],
            ['class' => 'kartik\grid\EditableColumn'],
            'id',
            'countrydate',
            'countryCode',
//more codes

can you guys help me about this? 你们可以帮我吗?

Add use kartik\\editable\\Editable; 添加use kartik\\editable\\Editable; to the top of the view. 到视图顶部。 It appearse the Editable view widget extends the base helper widget. 似乎“ Editable视图”窗口小部件扩展了基本帮助器窗口小部件。 Since Yii2 does not treat views as classes, and thus no namespace, use of classes have to be declared at the beginning / inline of the view's logic. 由于Yii2不会将视图视为类,因此也就没有命名空间,因此必须在视图逻辑的开始/内联处声明使用类。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM