コード例 #1
0
ファイル: DetailView.php プロジェクト: tymiles003/X2CRM
 /**
  * Added condition that scenario is not Inline. be aware
  * 'Inline' does not refer to inline-edit, but rather Inline view,
  * turned on in a quickView for example.
  */
 public function canEdit(Fields $field)
 {
     return !in_array($field->fieldName, $this->disableInlineEditingFor) && parent::canEdit($field) && $this->scenario !== 'Inline';
 }
コード例 #2
0
ファイル: DetailView.php プロジェクト: shuvro35/X2CRM
 /**
  * Added condition that scenario is not Inline. be aware
  * 'Inline' does not refer to inline-edit, but rather Inline view,
  * turned on in a quickView for example.
  */
 public function canEdit($field = null)
 {
     return parent::canEdit($field) && $this->scenario !== 'Inline';
 }