• Модуль: ui
  • Путь к файлу: ~/bitrix/modules/ui/lib/buttons/lockedbutton.php
  • Класс: BitrixUIButtonsLockedButton
  • Вызов: LockedButton::render
public function render($jsInit = true)
{
	$output = parent::render($jsInit);
	$uniqId = $this->getUniqId();

	// execute in any case despite $jsInit
	if ($this->hasHint)
	{
		// HACK: hint does not work on locked buttons because mouse(enter/out) events don't work for disabled buttons. So we remove disabled attribute
		$output .=
			"";
	}


	return $output;
}