Posted 19 May 2026, 10:50 am EST
Hi,
Migrate from 2010v1 to 2025v2 399 in ASP.NET WebForms NET Framework 4.8.1.
Using C1Window from C1.Web.Wijmo.Controls.48.dll
Changes C1Window to C1Dialog control.
In my legacy code using C1Window 2012v1, I use C1Window functions:
c1modallayer
function hidec1modallayer() {
var div = document.getElementById('c1modallayer');
div.style.display = 'none';
}
function showc1modallayer() {
var div = document.getElementById('c1modallayer');
div.style.display = 'block';
}
c1modallayer not required in new version ?
