190.168.1.232 - - [13/Mar/2023:12:38:11 +0300] "GET /test/test2.php HTTP/1.1" 200 928 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36"
190.168.1.232 - - [13/Mar/2023:12:38:12 +0300] "GET /test/test2.php HTTP/1.1" 200 1057 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36"
const SendPopup = document.querySelector(".drible__widget-popup-send");
const WidgPopup = document.getElementById("widget-popup-area")
WidgPopup.addEventListener("input", event=>{
if(WidgPopup.value.length < 1){
SendPopup.style.background = "#F3F3F4";
SendPopup.setAttribute('disabled', 'disabled'); // Сделать неактивной
} else {
SendPopup.style.background = "red"; // Это лучше сюда, чтобы цвет не мигал
SendPopup.removeAttribute('disabled'); // Сделать обратно активной, если в textarea что-то есть
}
})
var_dump(\PhpOffice\PhpWord\Style\Language::RU_RU_ID);
$orderNum = explode('/', $params['ACCOUNT_NUMBER'])[0];
$dbRes = \Bitrix\Sale\PropertyValueCollection::getList([
'select' => ['*'],
'filter' => [
'=ORDER_ID' => $orderNum,
]
]);
while ($item = $dbRes->fetch()) {
$orderingPars[$item['CODE']] = $item['VALUE'];
}