function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
turbo2ohturbo2oh 

override default Ids

After reviewing this page: http://www.salesforce.com/us/developer/docs/pages/Content/pages_compref_image.htm I've found that isn't holding true in my situation for some example.

 

When I set the id attribute of an apex:image it is adding a prefix to the id. I thought I had found away around this awhile ago but I can't seem to remember what it is. Is there a way to get the id in the rendered html to be the same as the one I set in the apex:image tag?

 

Thanks!

turbo2ohturbo2oh

To get around this I had to assign an ID to the parent element as well. Then I had parentId:imageId instead of the random prefix.  Even then I couldn't select it directly via CSS. I had to use a jquery selector after the document was loaded to add the class.

 

Is anyone aware of a better way to handle this?