Blogger by default, and other blogging software such as WordPress, automatically adds the “nofollow” microformat extension to all links from user generated content. User generated content is defined as comments or external sources such as linkbacks and trackbacks. I support the people of the blogging community who have chosen to remove NoFollow for blog comments… Continue reading Nofollow β free
Category: JavaScript
Generating tooltips on certain events
A tooltip is a small box of explanatory text (usually on yellow background) that appears when the mouse pointer is held over a button or other interface element.In Microsoft Dynamics CRM we can define constraints (masks) on certain fields. It is desired that the user is well informed about the textβs format, in real time,… Continue reading Generating tooltips on certain events
Using the “onmousemove” event
The “onmousemove” event can help you make sure that your script runs as well as your cursor on the form π I’ll give you a brief example of its usage. We want to trap the cursor’s coordinates as it moves in a certain entity’s form in CRM. Add the following code on the OnLoad() event… Continue reading Using the “onmousemove” event
Using the “onkeyup” event
Let’s add some interactivity to our customizations π For example, we have 4 fields: Amount (Schema Name amount, Type float(2)), Discount(Schema Name discount, Type float(2)), Tax (Schema Name tax, Type float(2)) and Total Amount (Schema Name totalamount, Type float(2)) and wewant to calculate in real time the Total Amount based on the Amount, Discount and… Continue reading Using the “onkeyup” event
How to read / write files using JavaScript
To read and write files from JavaScript, we will use an ActiveX Object from the Scripting.FileSystemObject library, which knows how to handle files. The second parameter of the OpenTextFile function represents what we want the object to do with the file (read = 1, write = 2, append = 8). And here are the scripts:… Continue reading How to read / write files using JavaScript
Coloring Activities (Tutorial)
Activities are central when working with sales in Microsoft CRM. Whether you need to contact a customer, send a quote, or run a campaign, it is all about activities in Microsoft Dynamics CRM. Downloading and reading this tutorial you will learn, step by step, a simple interface method of coloring activities in Microsoft Dynamics CRM… Continue reading Coloring Activities (Tutorial)
Events in JavaScript
Events are the beating heart of any JavaScript application. Without events there are no scripts. Take a look at any web page with JavaScript in it: in nearly all cases there will be an event that triggers the script. The reason is very simple. JavaScript is meant to add interactivity to your pages: the user… Continue reading Events in JavaScript