You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: