go to post Ben Spead · Jun 12, 2023 @Dheeraj Gupta, @Anderson Negreli - we have identified and corrected the situation. Can you please try again and confirm access? We do apologize for the inconvenience and we're working to figure out how this could have been prevented.
go to post Ben Spead · Jun 2, 2023 you can get a longer-lasting license from your account manager. the sort term license is the embedded one that ships by default
go to post Ben Spead · Jun 2, 2023 you can reach out to your account manager to get an updated key if you need to stay on the same version of the Community Edition
go to post Ben Spead · May 29, 2023 Eduard is correct ... System Default Settings are the proper way to handle this. we will also export the SDSs to store in a non-progressed branch in Source control to use as snapshots of the settings per environment over time (there is an export API you can use for this .. it doesn't tie into source control hooks).
go to post Ben Spead · May 25, 2023 apologies - I don't have a fully working sample available (or time to put one together I am afraid), but maybe else could put one together for you. You might get further if you share the code you have so far which is using these two components and explain the specific issues you are seeing (your original post wasn't clear that you already had the appropriate components in-hand but were having issues using them correctly)
go to post Ben Spead · May 25, 2023 To show the image you can use: https://docs.intersystems.com/iris20231/csp/documatic/%25CSP.Documatic.c...This gives you the ability to bind to a stream via OID Here is the documentation on the file upload control: https://docs.intersystems.com/iris20231/csp/documatic/%25CSP.Documatic.c... HTH!
go to post Ben Spead · May 25, 2023 You don't need to use REST APIs. One of the strengths of Zen was that it allowed you to directly access data within the DB for easy display
go to post Ben Spead · May 25, 2023 what type of a page are you using? csp? zen? a third party JS Library?
go to post Ben Spead · May 19, 2023 I suggest that you open a Support ticket with the WRC if you don't get a good answer quickly here.
go to post Ben Spead · May 18, 2023 @Hiroshi Sato - thank you for sharing! I would recommend that rather than using $zf(-100) you use the %File class to make your directory creation OS-independent. This will allow it to be used on different OSes. Check out the CreateDirectoryChain() method of the %File class: https://docs.intersystems.com/iris20231/csp/documatic/%25CSP.Documatic.c... So your line "Set x=$ZF(-100, "/shell", "mkdir", Directory)" could be replaced by: Set x=##class(%File).CreateDirectoryChain(Directory,.return) If ('x) { Write "Error Creating Directory Chain: "_return } Also, make sure that this script runs as the user that is used for all IRIS processes to ensure that the directory has appropriate ownership and permissions HTH!
go to post Ben Spead · May 16, 2023 ways great to see a well written tutorial - thank you for the time you spent on this :)
go to post Ben Spead · May 3, 2023 may I ask why you would want to do this? What is the downside of the methods all being in the same class? I don't think there is any way of doing this other than manually. I think you'll need to create a new class and then copy the method definition into the new class.
go to post Ben Spead · May 1, 2023 Thank you @Matthew Giesmann !! I know a lot of work went into this effort, and that our beta testers have been using this successfully for many months. Everyone - please make sure to provide feedback, especially if you see any issues. After a period of dual-use we will be retiring the old UI completely so if there are reasons users need to keep using the old UI for some reason we need to hear about the details ASAP.
go to post Ben Spead · Apr 25, 2023 Thank you @Gertjan Klein - that did it! (note, I fixed the missing ) in my example ... obviously I wrote that in my browser and not my IDE ;) )