Posted 13 May 2026, 3:13 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.
Using C1InputDate and C1Calendar.
Legacy popupBeside and C1.Web.UI.PositioningMode.bottomLeft, any alternatives ?
function SelectDateDesde() {
var calendar = Sys.Application.findComponent("<%=C1CalDesde.ClientID%>");
var input = document.getElementById("Text1");
calendar.popupBeside(input, C1.Web.UI.PositioningMode.bottomLeft);
}
function CalendarClosedDesde() {
var calendar = Sys.Application.findComponent("<%=C1CalDesde.ClientID%>");
var input = document.getElementById("Text1");
var month;
month = calendar.get_selectedDate().getMonth() + 1;
input.value = calendar.get_selectedDate().getDate() + "/" +
month + "/" +
calendar.get_selectedDate().getFullYear();
}
any suggestions ?
Thanks for all !! great job!

