7/5/2025 3:30:46 PM
|
|
slxdeveloper.com Community Forums |
|
|
|
The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
Forum to discuss the use of the SalesLogix Web Platform, Client and Customer Portals, and the Application Architect (For version 7.2 and higher only). View the code of conduct for posting guidelines.
|
|
|
| |
|
Re: 7.5.1 Change LUE color/text at run time
Posted: 30 Jun 09 2:51 PM
|
You could use javascript on the client to change the color and/or background images if needed.
This is code from 7.2, so you may need to change it based on 7.5, used to change an Image on the Lookup view:
setBackgroundTH("LookupView"); function setBackgroundTH(objCtr) { try { var obj = document.getElementById(objCtr); if (obj != undefined) { obj.firstChild.style.backgroundImage = "url(/SlxClient/images/blue/tableheader.gif)"; } } catch(e) {} }
|
|
|
|
You can
subscribe to receive a daily forum digest in your
user profile. View the site code
of conduct for posting guidelines.
Forum RSS Feed - Subscribe to the forum RSS feed to keep on top of the latest forum activity!
|
|
|
|
|
|
|
|