Yii2 GridView inline editing

14,873

Most Popular Extension for Gridview Inline Edit is Kartik-v Yii2 Editable and chrisb34/yii2-gridview-editable.

Few Reference Links and Demos:

1) Grid Demo
2) Gridview Editable Example
3) How to save Data
4) chrisb34 / yii2-gridview-editable
5) chrisb34 / yii2-gridview-editable Demo

Share:
14,873

Related videos on Youtube

Gyuzal R
Author by

Gyuzal R

Updated on June 04, 2022

Comments

  • Gyuzal R
    Gyuzal R almost 2 years

    I'm new to Yii and would appreciate if someone could advise if there is a way to use GridView with inline editing, i.e. it should be updated with Ajax. Till now I have:

    <?= GridView::widget([
        'dataProvider' => $dataProvider,
        'columns' => [
            'title_en',
            'title_mn',
    
            ['class' => 'yii\grid\ActionColumn', 'template'=>'{update}{delete}',],
        ],
    ]); ?>
    

    I would like to have something simillar with Kendo UI Grid demo. Please advise which extensions for Yii 2.0 are most popular and easy to use.