getReadOnly() публичный Метод

public getReadOnly ( ) : boolean
Результат boolean whether the items in the column can be edited. Defaults to false.
Пример #1
0
 /**
  * @param boolean whether the items in the column can be edited
  */
 public function setReadOnly($value)
 {
     if (parent::getReadOnly() === $value) {
         return;
     }
     parent::setReadOnly($value);
     $value = $this->getReadOnly();
     $this->callClientFunction('setReadOnly', $value);
 }