We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using the apex:inputfield tag on an Owner field, the styling can get broken if a queue can own the record:
This is because an extra div is brought in to contain the individual elements and this div has the "form-control" class applied.
There is a workaround - Add the following code to your javascript:
$("[id$=mlktp]").hide(); ("[id$=FIELDID_top]").removeClass("form-control"); $("[id$=FIELDID],[id$=FIELDID_lkwgt]").addClass("form-control");
Where "FIELDID" is the id you've assigned to the ownerId field.
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
No branches or pull requests
When using the apex:inputfield tag on an Owner field, the styling can get broken if a queue can own the record:
This is because an extra div is brought in to contain the individual elements and this div has the "form-control" class applied.
There is a workaround - Add the following code to your javascript:
("[id$=FIELDID_top]").removeClass("form-control");
Where "FIELDID" is the id you've assigned to the ownerId field.
The text was updated successfully, but these errors were encountered: