go to post Andrei Luiz Nenevê · Oct 13, 2017 I have found the option [Atelier Explorer]:But when I login, I get sucessful login message, but anyway can not edit any class, and the second option does not get enabled.
go to post Andrei Luiz Nenevê · Oct 10, 2017 I'm usingAtelier: 1.0.262Caché: 2017.1.1I can see the classes in Server Explorer (Can not edit).Where I can login in source control (Atelier)?, in Studio I have this option (Our source control tool):In Atelier console I can see information about source control, but I have not discovered how to login and use it.
go to post Andrei Luiz Nenevê · Jul 27, 2017 Well done, this is a great ideia.This would have been very useful in our Mojo application.
go to post Andrei Luiz Nenevê · Jul 3, 2017 Hi, You must use 3 single quotes: Call USER.SP('select * from Sample.Person where SSN='''aaaaa''' ','0','S')
go to post Andrei Luiz Nenevê · May 23, 2017 Hi Ruslan,I found an alternative,Suppose your dataCombo id is 'test' ( <dataCombo id="test" ...): Method %OnDrawHTMLBody() As %Status{ &html<<script type="text/javascript"> document.addEventListener("DOMContentLoaded", function(event) { var old = document.getElementById('test').innerHTML; newHtml = old.replace('class="comboboxInput"','class="comboboxInput" placeholder="Your custom placeholder..."'); document.getElementById('test').innerHTML = newHtml; });</script>> Quit $$$OK} I hope it helps!Andrei L. Nenevê
go to post Andrei Luiz Nenevê · May 15, 2017 Hi Marco,You can do with QUIT, to take back the value in javascript and work with it:ClientMethod searchValue() [ Language = javascript ]{var ctrl = zen('CountryID');tVar = ctrl.getValue();alert (tVar); ///test-show text value///examplename = zenPage.sqlTest(tVar);zen('CountryName').setValue(name);}Method sqlTest(tVar) [ ZenMethod ]{SET InVal = tVar &sql(SELECT Countrie INTO :OutVal FROM ZenCrm_Data.Countries WHERE CountrieCode=:InVal) QUIT:SQLCODE'=0 "No data returned! \n SQL error code "_SQLCODE QUIT "Name is = "_OutVal}
go to post Andrei Luiz Nenevê · Feb 24, 2017 Thanks Eduard,For now I will use both way, but in the future maybe I need to take a closer look at what fits the most.
go to post Andrei Luiz Nenevê · Dec 22, 2016 Actually I get all of my pages of the server side, it's all working, but I have this menu that is causing the page to load very slowly, it's taking too much time to load all contents, and I don't know how to upgrade this. I have to load the menu in every page, is there a way to load subcontents only after I click in a collapsible in menu.Can I load this content's only when a click in the collapsible, and not load all in the beginning?