go to post Stefan Wittmann · Jan 29, 2016 AWS is growing ridiculously fast. Microsoft announced their Q2 earnings yesterday (Microsoft’s financial year ends in June) http://techcrunch.com/2016/01/28/microsoft-made-money-q2-2016/ and their cloud business grew by 10% compared to Q1.
go to post Stefan Wittmann · Jan 29, 2016 Functional indices are very powerful and allow you to implement additional indexing logic. Thank you very much for composing this insightful post.
go to post Stefan Wittmann · Jan 29, 2016 What this means is that you have to create a new CSP application in the System Management Portal here: System > Security Management > Web Applications Create a new web application and provide "/" as the name. Select "csp/sys" in the copy from dropbox and save the web application.This allows you to accesshttp://localhost/csp/sys/UtilHome.cspashttp://localhost/UtilHome.csp
go to post Stefan Wittmann · Jan 28, 2016 I think the Autocompile setting has to be set to false to allow what Ben is describing. The mapping of static files is done either by deploying them to "csp/broker" (making them available for all web applications) or by a proper mapping in your web server if you are using an external one.
go to post Stefan Wittmann · Jan 22, 2016 Not sure what is going on here, as the code looks fine. What class do you extend from? The only difference I can spot is that your class method is calling ..Lookup, instead of ##class(Ens.Util.FunctionSet).Lookup
go to post Stefan Wittmann · Jan 22, 2016 I don't see this either. I am using Safari. Just had a quick look at the cookies, what looks like the session cookie expires for me at February 10th. But I agree that you should be redirected to the page you looked at after you log in.
go to post Stefan Wittmann · Jan 15, 2016 Sure. The best way to achieve this is to build your own custom theme using the jQM ThemeRoller application: https://themeroller.jquerymobile.com Add a swatch with a custom letter (e.g. "f") and define your theme by setting colors, fonts and so on for all elements. When you are done you can download the theme zip file and extract it in the directory where you serve your static files from. Include your CSS file, instead of the default jQM CSS file and finally just set the defaultTheme of your jQMPageManager to the swatch you designed (e.g. "f") and you are done.
go to post Stefan Wittmann · Dec 16, 2015 Steve, here is a link to the related documentation from 2015.2: http://docs.intersystems.com/ens20152/csp/docbook/DocBook.UI.Page.cls?KEY=ESOAP_web_service#ESOAP_ws_soap_sessions If I read this correctly, then different SOAP calls do not share the same CSP license slot by default. If you set the parameter SOAPSESSION=1, then a SOAP header will be added to the response that allows the client to maintain the session for subsequent calls. HTH, Stefan
go to post Stefan Wittmann · Dec 15, 2015 Hi Fabio and Bernd, <documentView>.disableItem(id,newState); is really just a shortcut for <layoutItem>.$disable(newState); Both only work on standard control elements, and only *if* the library rendering the widget in question don't add special logic. jQueryMobile implements their own styles and behavior for disabling and enabling elements, therefore, it is the most stable approach to leverage the jQM logic. A long discussion regarding this topic can be found here: http://stackoverflow.com/questions/5875025/disable-buttons-in-jquery-mobile Let's walk through this in the ZM.jQM145.HomePage.cls demo and disable/enable the main button with the caption "Start demo". var view = zen('mainView'); var button = view.getItemByKey('start-show'); var id = button.$findElement().id; $('#'+id).button('disable'); $('#'+id).button('enable'); Line 1 retrieves the documentView component while line 2 retrieves the button layout object. This is pretty basic. In order to run jQM logic we have to find the HTML DOM element we want to disable/enable with the $() method from jQuery. As it requires the physical id that Zen Mojo generated for us we store that in a local variable id in line 3. Line 4 now looks up the jQM widget and disables it with the supported jQM library call. Line 5 enables the button again. In the future, we may add support for $disable and these special library calls as we have done for $show and $hide. $show and $hide work on any widget from any supported plugin. HTH, Stefan
go to post Stefan Wittmann · Nov 20, 2015 I just checked this on 16.2. The compiler does not complain about the ">" character in selectors: &html< <style type="text/css"> .SourceFile > div{ color: black; background: #EEEEEE; font-size: 12pt; } </style> >
go to post Stefan Wittmann · Nov 20, 2015 You can manually escape ">" with ">". A more generic approach is to escape your CSS with ..EscapeHTML().