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

public setReadOnly ( $value )
Пример #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);
 }