• RE: Hide Classification Values (in the Classification Tree) based on Criteria

    Hi AngelaIp , I tried with Innovator 15, and it works as expected. Thanks, Lokesh
  • RE: Hide Classification Values (in the Classification Tree) based on Criteria

    Hi ShrutiS / AngelaIp I know this is late reply but Yes this can be archived by below code. Please let me know if you have any questions. const type = this.getType(); if(type === "Document") { parser = new DOMParser(); let xmlDoc = ""; xmlDoc = parser…
  • RE: Data loss issue from relationships

    Hello AngelaIp (angela), I didn't change anything in OOTB. Just installed Aras Innovator with OOTB database. This issue is reproducing without any customization. I have checked in network tab. In server request browser is sending only parent item (…
  • RE: Icons on table of contents disappear

    Thank you for this fix AngelaIp . Even though the web.config is much smaller in Version 26, it still works by simply adding the line once after the denyUrlSequences node.
  • RE: Aras Update (Version 1.22.1328.0): Aras Quality Management System (2023 Release 14.0.1) Download Failed

    Thank for you response. AngelaIp Let's see if someone from ARAS is responding for this thread. Also, If you get to know the option to direct download of QMS Packages, pls let me know.
  • RE: Official Aras color palette used for Innovator

    Indeed a feature I also needed in many cases AngelaIp . Looking forward to the response of Aras Blog .
  • RE: Accessing Aras Innovator instance outside the network using Ngrok Tunneling

    Unknown
    Unknown
    nagendra AngelaIp I managed to fix this CORS issue. It comes down to mixed content being blocked by browser (ie: visiting website from https:// but some content is served using http://). When tunneling with ngrok, the default scheme used is https, thus…
  • RE: Without editing item getting unsaved changes warning

    Hello AngelaIp Thanks for your quick reply. Instead of applyItemWithFilesCheck API now I'm using top.aras.saveItemEx API in javascript & now it is working fine . But for saveItemEx API again I need to call UnlockItem API. is there any alternate for…
  • RE: New free version ...

    Unknown
    Unknown
    AngelaIp "but a tiny issue regarding SSL makes it hard for me to use it in production"——What is the issue? I am planning to try the 2023 version. Thanks.
  • background-color in TOC

    Hello, I am trying to change the background color of a cell in the TOC. I have based on AngelaP's code in git, but I can't change anything. Any suggestions? My ARAS is version 11.0 SP9 This is AngelaIp GItHub: Impact Matrix Color for (int i…
  • RE: How can I trigger the classification to update and change forms from a different property?

    Hey AngelaIp I ended up getting with Aras Support and they recommended the following code addition that ended up working. var inn = top.aras.newIOMInnovator(); var formtype = document.all("form_type").value; var worktype = document.all("workflow_purpose…
  • RE: Calling "Run Search" button by code

    Hello, You can try this piece of code if your method is JavaScript. const topWindow = aras.getMostTopWindowWithAras(window); if (topWindow.work && topWindow.work.grid) { main.work.searchContainer.runSearch(); } else { parent.onRefresh();…
  • Promote Dropdown dinamically

    Hello, I'm trying to fill a dropdown by code. Let me explain, I have a report, which when selected, shows me a screen where the user can select the date range and I would like to put a dropdown with the list of departments of a method (table). Well, there…
  • RE: ClosedXml.dll is not working in Aras12Sp22

    Hello AngelaIp While executing method Aras is throwing exception. Method is compiling without any error. Regards, Suhas
  • RE: ClosedXml.dll is not working in Aras12Sp22

    Hello Suhas and AngelaIp I did some comparison between the 2 versions and here are some points which might help you proceed. 1. In Old Version 12SP9 WindwosBase.dll is available on Innovator/Server/bin folder and it corresponds to .NetFramework you can…