Reputation: 250
I have a Kartik editable column in a GridView. When I go to that GridView, it continuously reloads the page. This issue only occurs on iPad and Mac.
Here is my GridView editable column code:
[
'class' => 'kartik\grid\EditableColumn',
'attribute' => 'diagram_name',
'readonly' => !yii::$app->user->can('diagram/editdiagram'),
],
How can I stop reloading the page? It works fine on other operating systems.
Upvotes: 1
Views: 99
Reputation: 46
I just tested this on IOS-8.4 and IOS-9.2. It works on IOS-9.2 and not version before that.
For this to work browser must support pushState. This available from IOS-9.2 and above.
http://caniuse.com/#search=pushstate
Regards.
Upvotes: 1