I’ve had a look through xpages elements and want to get started and build something functional. But I don’t know where to start with Server Side JavaScript.
Have made a bit of a blind start, but not got too far. Is there an object model diagram somewhere, is there a specific server side javascript object model for Xpages?
Haven’t been able to find any books on “Server Side JavaScript with XPages”, not sure if I should be looking for a book that is specific to XPages or if any Server Side JavaScript book will do?
Anyone got a few publication pointers to get me going?
If you know client-side javascript, then it is more than enough to start writing SSJS. there are few things which you can’t use when write server-side javascript. For example, alert() method. Instead, you can use print(“sdfsf”). You can write all your client-side javascript code in the SSJS area.