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
Hello,
I have found a bug in SPDropdownCtl when used on SP2010 (possibly only on localized sites, using Italian here and I don't have an English site around for further testing).
Calls to $().SPServices.SPDropdownCtl fail when the dropdown is a required field. In this case Sharepoint sets the title attribute on the select as ' Campo obbligatorio' (which translates as ' Required field'); thus the selector $("select[Title='" + opt.displayName + "']") fails.
This causes lots of problems in filter dropdowns and other customizations which worked fine under previous versions.
Right now the workaround is to explicitly set the tooltip using jquery before activating SPServices functions, since Sharepoint:FormField doesn't allow setting the title attribute in server side code.
The text was updated successfully, but these errors were encountered:
Hello,
I have found a bug in SPDropdownCtl when used on SP2010 (possibly only on localized sites, using Italian here and I don't have an English site around for further testing).
Calls to
$().SPServices.SPDropdownCtl
fail when the dropdown is a required field. In this case Sharepoint sets thetitle
attribute on the select as ' Campo obbligatorio' (which translates as ' Required field'); thus the selector$("select[Title='" + opt.displayName + "']")
fails.This causes lots of problems in filter dropdowns and other customizations which worked fine under previous versions.
Right now the workaround is to explicitly set the tooltip using jquery before activating SPServices functions, since Sharepoint:FormField doesn't allow setting the title attribute in server side code.
The text was updated successfully, but these errors were encountered: