Quote from
lolo on December 8, 2023, 2:32 pm
Получил из js
BeginJS
const date = new Date();
const year = date.getFullYear();
const month = date.getMonth()
const daysInMonth = new Date(year, month + 1, 0).getDate();
$App.MaxDay = daysInMonth;
EndJS
Получил из js
BeginJS
const date = new Date();
const year = date.getFullYear();
const month = date.getMonth()
const daysInMonth = new Date(year, month + 1, 0).getDate();
$App.MaxDay = daysInMonth;
EndJS
luishp has reacted to this post.