Juice UI is an open-source collection of WebForms components that brings jQuery UI Widgets to your project with ease. Start leveraging the power of the world's most popular JavaScript UI library while working with familiar code in your ASP.NET projects.
In JuiceWidgetState.cs the method LoadPostData() after the line
var postedControlState = LoadPostDataForControl();
should add
if (!postedControlState.ContainsKey(widgetOption.Name))
{
continue;
}
to make sure the option is in the option list before process further, otherwise it will set the null value for the option.
In JuiceWidgetState.cs the method LoadPostData() after the line var postedControlState = LoadPostDataForControl();
should add if (!postedControlState.ContainsKey(widgetOption.Name)) { continue; } to make sure the option is in the option list before process further, otherwise it will set the null value for the option.