XmlGrid Users Forum
How to create and retrieve cookies using javascript?
You can use the following javascript functions to set and retrieve cookies from the browser:__code__function setCookie(name,value,days) {...
Regular expression to validate email address in javascript
This javascript function validates an email address. It returns true if an valid email address is passed otherwise returns false.__code__function isEmai...
Regular expression to match XML DateTime data type
I need a regular expression to match XML dateTime data type, preferably in javascript. The dateTime is in the following format:YYYY-MM-DDThh:mm:ss ...
How to check if a variable is undefined in javascript
An undefined variable will usually cause unwanted exception in javascript if you try to reference it. You can detect a possible undefined variable in this way:__code__...
How to detect or validate an XML date node value in javascript
The following function returns true if a valid XML date value is passed:__code__function isDate(s){...
How to detect or validate an integer number in javascript
You can use this function to detect or validate an integer number in javascript__code__function isInt(s) {    if (s != null &a...