Browse by Tags
All Tags »
JScript (
RSS)
Looking up information in a Lookup field is harder than what it needs to be. I use two different methods. Each has had their purpose in my efforts of CRM. Ideally the first method is the shortest but on some forms has also given me the hardest time. The...
Here are some of the mroe common JScript routines that I run and utilize on a weekly basis in my CRM JScript functions. __.toUpperCase(); Convert to UPPERCASE __.toLowerCase(); Convert to lowercase __ .replace(/[ ]+$/, ''); Trim all characters...
Move Window window.moveTo(window.screenLeft, window.screenTop); // Reposition the window to the top left corner of the screen window.moveTo(0, 0); Resize Window self.resizeTo(document.body.offsetWidth, document.body.offsetHeight + 150); // Resize the...
I will typically add this code to the onLoad event as well as the onChange event for the Country fields. This helps in providing consisting and uniformity across the CRM website. This also greatly helps when searching for the country as you know it will...
Hiding a tab is not supported by Microsoft. Although unsupported due to the fact teh tab order could change using some undocumented features aren't always a bad thing to do. If you clearly define to your client that this is unsupported and for this...
A common task I routinely do when setting up any new CRM system is to start the system out and format the phone number into something consistent for my clients. I have two different routines for basic installations. There's one I use that will be...