コード例 #1
0
ファイル: GridView.php プロジェクト: hiqdev/yii2-higrid
 /**
  * {@inheritdoc}
  */
 public function getId($autoGenerate = true)
 {
     if ($autoGenerate && parent::getId(false) === null) {
         $this->id = hash('crc32b', Json::encode($this->columns));
     }
     return parent::getId();
 }