/**
  * Initializes the session.
  * This method will instantiate [[columns]] and [[sessions]] objects.
  */
 public function init()
 {
     parent::init();
     $this->initElements($this->columns, Column::className());
     $this->initElements($this->sessions, Session::className(), ['owner' => $this]);
 }