Posted 3 June 2026, 9:53 am EST - Updated 4 June 2026, 2:36 am EST
Hi,
Migrate from 2010v1 to 2025v2 399 in ASP.NET WebForms NET Framework 4.8.1.
Using C1InputDate from C1.Web.Wijmo.Controls.48.dll
Changes C1DateInput to C1InputDate control.
cts.ShiftBeginDateText.set_visible(manuallyAdded);
cts.lblReadOnlyPendingShiftDate.style.display = manuallyAdded ? 'none' : '';
cts.lblReadOnlyPendingShiftDate.value = '';
cts.ShiftEndDateText.set_visible(manuallyAdded);
cts.lblReadOnlyPendingShiftDateEnd.style.display = manuallyAdded ? 'none' : '';
cts.lblReadOnlyPendingShiftDateEnd.value = '';
cts.ShiftEndDateText.set_date(values.ShiftEndDate);
cts.lblReadOnlyPendingShiftDateEnd.innerHTML = cts.ShiftEndDateText.get_text();
cts.ShiftNumber.set_text(values.ShiftNumber);
set_visible legacy ? alternative ?
get_visible
if (cts.ClosePendingShiftEndDateText.get_visible()) {
var beginValue = cts.ShiftBeginDateText.get_date();
var value = cts.ClosePendingShiftEndDateText.get_date();
return value > beginValue;
}
get_text, set_text
cts.ShiftBeginDateText.set_date(values.ShiftBeginDate);
cts.lblReadOnlyPendingShiftDate.innerHTML = cts.ShiftBeginDateText.get_text();
$find, $get…
cts.CancelledPagesNumeration = $find(args.CancelledPagesNumeration);
cts.AcceptButton = $get(args.AcceptButton);
