How to use entities from an other eSpace in Outsystems

0 Comments

Lets assume you have two eSpaces: eSpace_1 eSpace_2 Now you want to use entities created in eSpace_1 in eSpace_2, then follow the steps below:   Open eSpace_1 with Outsystems Service Studio en go to the

Nice: Auto-sync JavaScript Intellisense in VS2013 RC

0 Comments

If autosync is enabled, adding a new JavaScript file to your project will automatically add intellisense support for this file to all JavaScript files in you project:   http://madskristensen.net/post/Auto-sync-JavaScript-Intellisense-in-VS2013-RC.aspx

The best way to load external JavaScript

0 Comments

I found another post from Nicholas Zakas interesting:   The best way to load external JavaScript http://www.nczonline.net/blog/2009/07/28/the-best-way-to-load-external-javascript/   default.html <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>Test page</title> </head> <body> <script type="text/javascript" src="http://your.cdn.com/first.js"></script> <script type="text/javascript">

The 4 JavaScript load opportunities

0 Comments

Interesting podcast by Scott Hanselman and Nicholas Zakas: http://hanselminutes.com/383/enough-with-the-javascript-already-with-nicholas-zakas   It mentions the 4 JavaScript load opportunities: In the <head> tag Before the </body> tag After page load (windows.onload DOM ready function) On demand (when