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
Vincenzo BenfanteVincenzo Benfante 

Can remove the highlight of row when the mouse pass on it ?

Hi guys!!!!

 

I love the style of apex pageBlockTable but i have a problem:

can I remove the highlight of row when the mouse pass on it ?

 

Thanks for the reply!

sfdcfoxsfdcfox

It's JavaScript, so you'd have to remove the script's action from each row. Probably the easiest way would be in jQuery, but the ultimate design is up to you.

Vincenzo BenfanteVincenzo Benfante

Hi sfdcfox, thanks for reply!

 

How remove the script's action?

 

And how the ultimate design can help me?

sfdcfoxsfdcfox

I'm not sure how removing the highlight will help you, as you're the one who asked how to do it. Regardless, I think this should help:

 

<script>
    window.hiOff = undefined
</script>

I believe this has to be called at some point after onLoad, so you might use a setTimeout in a cross-browser compatible onload handler to call this line of code. I don't honestly have time to test this theory, but let me know how it goes.

Vincenzo BenfanteVincenzo Benfante

Thanks!!!