var fDesc=new Array(); fDesc[0] = "This FREE course will get you started with XPages. Learn how to create an XPage, add controls to display Domino documents and views, and try out some cool stuff you can do with XPages, like creating charts and graphs in both the Notes client, and a web browser. The course covers:
An introduction to the Domino Designer in Eclipse (DDE)
Working with the Applications Navigator and creating Working Sets
How to use the Eclipse Perspectives, Views and Editors
Creating XPages for your application
Displaying Domino views and documents on XPages
Using the XPages Core controls for creating and editing Domino documents
Demonstrations to show you the power of advanced XPages techniques and capabilities"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }