Release 36 Bug Fix: Search Grids Remain Blank and Strange Horizontal Scroll Behaviour
Hello Innovators, In Release 36 we were facing some strange behaviour: Some grids remaining blank even though items where returned from the search query Horizontal scrolling on grids would result in columns being mixed and glitching After some debugging, we found the issue was caused by 3 files. Attached you find those fixed files and a readme.txt on how to implement them. [View:/community/cfs-file/__key/communityserver-discussions-components-files/10/R36-Blank-Search-Grid-_2B00_-Horziontal-Scroll-Bug-Fix.zip:320:240] I hope this can help anyone else facing this issue. All the best, Daan0Views1like2CommentsCustomize labels of search grid by classification
Preparing several forms for an ItemType by classification can change those labels on the same property. But can I do that on search grid too? For example, apply a client method to watch the search criteria of classification and switch the label.0Views0likes2CommentsTypeError: Cannot read properties of undefined (reading 'itemTypeGridPlugin')
Dear team, We are currently using Aras version Release19. However, when attempting to perform searches for both parts and documents, we encounter an error stating "TypeError: Cannot read properties of undefined (reading 'itemTypeGridPlugin')." This error is causing the search operation to fail. Could you please advise on how to resolve this issue? I have already checked the error log, but I couldn't find any relevant information. Attaching screenshot for your reference. Regards, S. Senthurpari0Views0likes3CommentsSearching by effective date when adding relationships
Hello - We have an application built within Innovator that is similar to the Digital Twin concept, with configurations of components within modules tracked as versions of the module item, and 'hard fixed' relationships between the recorded jobs and the specific version of module which was used. This works really well as long as the job is entered at the time, but quite often jobs are entered retrospectively after new versions of the modules have been created, and users often forget about the process to find a specific historical version (using generation > 0 search criteria), instead just selecting the latest. In the main search grids you can search with the 'query type' set to 'effective' and set which date you're interested in (e.g. in my case the job date), which returns the relevant historical versions rather than the latest. Does anyone know a way to mimic this in the relationship search dialog? Many thanks806Views0likes6CommentsARAS R12-Last search executed not saved anymore
Hi, In ARAS R11, when a search page was displayed the query area was fill with the last query executed. Since ARAS R12, that doesn't seem to be the case anymore. Is it normal or a bug ? Is there a way to enable this behavior like in ARAS R11 ? Thank you in advance for your help.2.5KViews0likes1CommentA feature idea: Image-reverse-lookup / Image search
Hi, I don't know if this is possible, but an idea... A common scenario is a person comes to me with a part in his hand and ask me “what is the part number of this part / in which assembly does this belong?” Almost impossible to answer on a single physical part How would it be if user could take a photo of the part, upload the photo to an Aras search and get hits on corresponding parts by their images ? I think that would be a great Aras functionality. Pinterest, Google photo and other search engines use the reverse-image-lookup feature Here is also a really nice article about it https://www.hackevolve.com/building-a-reverse-image-search-engine/ Just a thought.. Regards//Mikael2.8KViews0likes1CommentShow Hide QueryType options
Hi, I want to hide options from Query Type Dropdown, If I select part from grid then only (Current and Release should be visible). So for that I tried this way: Code in ItemsGrid.html file, I call a function inside initMenu() function. below is my code: function dr_showHideQueryType(itemTypeName){ Current = getChoiceItemName(0); Latest = getChoiceItemName(1); Released = getChoiceItemName(2); Effective = getChoiceItemName(3); var opts = []; opts[Current] = false; opts[Released] = false; opts[Latest] = false; opts[Effective] = false; if(itemTypeName === "Part"){ opts[Current] = true; opts[Released] = true; } else{ opts[Current] = true; opts[Released] = true; opts[Latest] = true; opts[Effective] = true; } for (opt in opts) { if (!opts[opt]) { removeChoiceItem(opt); } } } function getChoiceItemName(id) { var tbi = searchbar.getActiveToolbar().getItem("query_type"); var tbi_id = tbi.getItem(id); return tbi_id; } function removeChoiceItem(name) { if (name == undefined) { return; } var query_type_tbi = searchbar.getActiveToolbar().getItem("query_type"); try { query_type_tbi.remove(name); } catch (e) { } } But not able to achieve the expected behaviour, is anything i'm missing. Regards, Maddy.1.9KViews0likes0CommentsDynamic Query Type Dropdown
Hi Experts, My usecase is: if I click on Part in TOC then on search toolbar I want to load "Query Type" dropdown with 3 values(Current, Released and Latest), I do't want to show Effective option. But I want all these four attributes if I select "Project Record" from TOC. Is it possible to do this? Thanks in advance! Regards, Maddy1.6KViews0likes0Comments