go to post Jochen Roese · Mar 17, 2016 #dim url = request.Server_":"_request.Port_"/"_request.LocationOr do you mean something else?
go to post Jochen Roese · Mar 17, 2016 I think they are developing the plugin after Atelier is out of beta.
go to post Jochen Roese · Mar 17, 2016 Atelier is it's own modified Eclipse IDE. It's like Android-Studio. It's based on Eclipse but it's not the same.I think Intersystems need to code extra libs for Eclipse to get this thing to work or modify/add another repository with the needed libs as plugin. The repos you added is the Atelier-Executable itself. It's not a Plugin-Repository like the Android-Plugin for Eclipse.
go to post Jochen Roese · Mar 15, 2016 The Method already was in a try and catch block. No Error. Well I edited the post. javac using different output-methods. Redirecting these to a file and reading the file afterwards solved my problem.
go to post Jochen Roese · Mar 10, 2016 That should do it for both types: ClientMethod StartEvent(key,eventType,value) [ Language = javascript ]{if (zenPage.templateDispatchMode) {var newArea = "events-" + key.split(":")[0];if (zenPage.currArea!==newArea) {zenPage.currArea = newArea;zenPage.loadTemplateNS(zenPage.templateDispatchBaseNamespace+"/events",key.split(":")[0],newArea);}}var st = zenPage.getTemplate();st[eventType](key,value,'mainView');}
go to post Jochen Roese · Mar 9, 2016 As temp solution you can use href:"javascript:zenPage.StartEvent('yourkey','onclick','yourvalue');"In your Zenpage add following ClientMethod to call events (sometimes useful for handling zen-events with bootstrap-plugins): ClientMethod StartEvent(key,eventType,value) [ Language = javascript ]{var newArea = "events-" + key.split(":")[0];if (zenPage.currArea!==newArea) {zenPage.currArea = newArea;zenPage.loadTemplateNS(zenPage.templateDispatchBaseNamespace+"/events",key.split(":")[0],newArea);}var st = zenPage.getTemplate();st[eventType](key,value,'mainView');}