Don't miss out Virtual Happy Hour today (April 26).

Try our conversational search powered by Generative AI!

Forms Localization Validation Issue Between version 4.7 and 4.10

Vote:
 

We have been working through this issue with support for 7 days and are making no headway there so I wanted to bring this up in here in hopes that a dev would see it.  We recently have upgraded from Forms 4.7 to Forms 4.10.  We started running into errors in our error logs post upgrade.  "Element '' not found or the Form has not been re-published after was changed."  In digging into it we decovered that this is a localization issue.  We have en-us, en-ca and fr-ca web sites.  We have our en-ca sites falling back to en-us.  For our forms and form elements, we have en-us and fr-ca version and have en-ca fallng back to en-ca.  In decompiling the EPi code we discoverd the issue.

Upgrading

from

Assembly: EPiServer.Forms.UI, Version=4.7.0.0

 namespace EPiServer.Forms.EditView.Internal.ValidationService

 line 60

if (!instance.TryGet(new ContentReference(complexReference), out content))

{

               ValidationService._logger.Error("Element '{0}' not found or the Form has not been re-published after was changed.", new object[1]

               {

                 (object) complexReference

               });

}

 

to

Assembly: EPiServer.Forms.UI, Version=4.10.0.0

namespace EPiServer.Forms.EditView.Internal.ValidationService

line 61

 

if (!instance.TryGet(new ContentReference(complexReference), Thread.CurrentThread.CurrentUICulture, out content))

               {

               ValidationService._logger.Error("Element '{0}' not found or the Form has not been re-published after was changed.", new object[1]

               {

                 (object) complexReference

               });

}

The issue is simply that the code was changed in the new version on the TryGet to use CurrentUICulture, which it should not be doing.  It still needs to respect the fallback language.  Hoping someone from EPiServer sees this and can dig into the ValidationService and confirm the issue.

#189978
Mar 28, 2018 16:00
Vote:
 

Hi,

Yes, this should be a bug a bug. Could you provide the steps so we can easily have a look and fix?

#190007
Mar 29, 2018 9:39
Vote:
 

We discovered the error in our error logs and decompiled the dlls to find the issue.  We have en-us, en-ca and fr-ca web sites.  We have our en-ca sites falling back to en-us.  For our forms and form elements, we have en-us and fr-ca version and have en-ca fallng back to en-ca. The key piece is to have some of the form elements marked as required.  Access the form on an en-ca site, which would roll the form up to the en-us version.  Submit the form and the error will show up in the error log.

#190339
Apr 09, 2018 18:34
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.