• Модуль: ui
  • Путь к файлу: ~/bitrix/modules/ui/lib/buttons/basebutton.php
  • Класс: BitrixUIButtonsBaseButton
  • Вызов: BaseButton::setDisabled
public function setDisabled($flag = true)
{
	if ($flag === false)
	{
		unset($this->getAttributeCollection()['disabled']);
	}
	else
	{
		$this->getAttributeCollection()['disabled'] = true;
	}

	return $this;
}