Tuesday, May 20, 2008

To get more information of Java script use bellow link...

To get Java script more information use bellow given link.
http://jennifermadden.com/javascript/stringSubstring.html

How to visible or invisible controls through Java Script....

You can visible or invisible controls with two different ways-
1) var control;
control=document.getElementById("controlId");
control.style.display="none";
control.style.display="block";

2) var control;
control=document.getElementById("controlId");
control.style.visibility="visible";
control.style.visibility="hidden";

first one work with IE,Netscape,Mozila,etc. smoothely.
second one work with IE only.

Split the String values with a special character in MS Flow to convert this into Array

 Many times we have a requirement to prepare the Mailing address for some of the documents, suppose there are Address Line1, Address Line2, ...