Today we faced with funny problem in LN 6.5.4 (I'm sure the same behavior in any another version of 6.5.X)
We do export of some LN elements and when we import it back we discovered that Input Enabled formula disappear. I checked our DXL file and found that formula was non there. Then I used simple way to check where was the problem, I create simple form, put there 1 field with Input Enabled formula and using Tools\DXL Utilities\Exporter export it to file. There was no Input Enabled formula at all. Funny issues but now we have to rewrite some places.
FYI: This works correct in R7 and ++
Tuesday, June 09, 2009
Monday, June 08, 2009
JavaScript libraries and reference sites
Got it from BestPracticesWebAppDevDomino8.pdf
Ajaxian.com
a site dedicated to improving Web development
devguru.com - A another site for Web development information
Dojo
http://www.dojotoolkit.org/
jQuery
http://jquery.com
A fast, concise, JavaScript Library that simplifies working with HTML documents
JSON.org
http://json.org
The home page for JSON information
MooTools
http://mootools.net
A compact, modular, OO JavaScript framework that is designed for the intermediate to advanced JavaScript developer
Prototype
http://www.prototypejs.org/
script.aculo.us
script.aculo.us
Provides an easy-to-use, cross-browser user interface
Yahoo UI
http://developer.yahoo.com/yui
Provides a set of utilities and controls, written in JavaScript
EXT
http://extjs.com
Provides for a cross-browser UI libraries
Some useful links:
Web development tools
http://www.ibm.com/developerworks/wikis/display/dominoappdev/Web+development+tools
Web development resources
http://www.ibm.com/developerworks/wikis/display/dominoappdev/Web+development+resources
Domino resources
http://www.ibm.com/developerworks/wikis/display/dominoappdev/Domino+resources
Ajaxian.com
a site dedicated to improving Web development
devguru.com - A another site for Web development information
Dojo
http://www.dojotoolkit.org/
jQuery
http://jquery.com
A fast, concise, JavaScript Library that simplifies working with HTML documents
JSON.org
http://json.org
The home page for JSON information
MooTools
http://mootools.net
A compact, modular, OO JavaScript framework that is designed for the intermediate to advanced JavaScript developer
Prototype
http://www.prototypejs.org/
script.aculo.us
script.aculo.us
Provides an easy-to-use, cross-browser user interface
Yahoo UI
http://developer.yahoo.com/yui
Provides a set of utilities and controls, written in JavaScript
EXT
http://extjs.com
Provides for a cross-browser UI libraries
Some useful links:
Web development tools
http://www.ibm.com/developerworks/wikis/display/dominoappdev/Web+development+tools
Web development resources
http://www.ibm.com/developerworks/wikis/display/dominoappdev/Web+development+resources
Domino resources
http://www.ibm.com/developerworks/wikis/display/dominoappdev/Domino+resources
isNumeric for web
as I think the best approach to check value in web for IsNumeric is:
function IsNumeric(expression) {
var nums = "0123456789";
if (expression.length==0)return(false);
for (var n=0; n <>
if(nums.indexOf(expression.charAt(n))==-1)return(false);
}
return(true);
}
function IsNumeric(inputVal,sErrorMsg) {I also used such approach, but I don't like it anymore
if (isNaN(parseFloat(inputVal))) {
alert(sErrorMsg)
return false;
}
return true
}
function IsNumeric(expression) {
var nums = "0123456789";
if (expression.length==0)return(false);
for (var n=0; n <>
if(nums.indexOf(expression.charAt(n))==-1)return(false);
}
return(true);
}
Subscribe to:
Posts (Atom)