Posted 13 January 2026, 4:05 am EST
Hi,
Migrate from 2010v1 to 2025v2 399 in ASP.NET WebForms NET Framework 4.8.1.
Using C1InputNumeric from C1.Web.Wijmo.Controls.48.dll
set_nullText and set_Value now not exists.
Javascript code in my aspx page:
function resetWindowAdd() {
try {
deleteTextBox('<%= TextBoxDescription.ClientID %>');
deleteTextBox('<%= TextBoxCreditCard.ClientID %>');
var currencyinput = $find("<%= C1NumericInputServiceTime.ClientID %>");
currencyinput.set_nullText('<% Response.Write((string)this._textsShown[4]); %>');
currencyinput.set_Value(0);
currencyinput = $find("<%= C1NumericInputPriority.ClientID %>");
currencyinput.set_nullText('<% Response.Write((string)this._textsShown[4]); %>');
currencyinput.set_Value(0);
TabCategory = -1;
ExitCategory = -1;
AutomaticCategory = -1;
setSelectedIndexDropDownList('<%= C1ComboBoxPassMode.ClientID %>', 0);
Any suggestions ?
