Aras search grid edit OOTB issue
Hello Team, I have observed that when I try to check a Boolean property value as true from the main search grid window, it does not update correctly. On the server side, we are receiving the value as true instead of 1 . Is there any workaround for this? AngelaIp ,eli_donahue , asebastian Regards, Suhas0Views0likes12CommentsHow can I choose a specific Search Mode when opening a Search Dialog via Method?
Hi community, I use following code to open a classic Part search dialog. [embed:dc8ab71f-3b98-42d9-b0f6-e21e02a0f8e2:e11e18e7-06f2-4dd3-8697-899cd4f649c4:type=javascript&text=const%20param%20%3D%20%7B%0A%20%20%20%20aras%3A%20aras%2C%20%0A%20%20%20%20type%3A%20%27SearchDialog%27%2C%0A%20%20%20%20dialogWidth%3A%201200%2C%0A%09dialogHeight%3A%20500%2C%0A%20%20%20%20itemtypeName%3A%20%27Part%27%2C%20%20%0A%20%20%20%20defaultSearchMode%3A%20%22AML%22%2C%20%20%2F%2F%20%3F%3F%3F%3F%3F%3F%0A%7D%3B%0A%0Aconst%20topWnd%20%3D%20aras.getMostTopWindowWithAras%28%29%3B%0AtopWnd.ArasModules.MaximazableDialog.show%28%27iframe%27%2C%20param%29.promise.then%28callback%29%3B] Is it possible to pre-select the used search mode? Typically the "Simple" (Einfach) search mode is preselected. I have an additional custom search mode that is similar to Simple, but allows users to search for all generations of a Part. In my use case user shall be able to search and select previous Part versions. So it would be convenient if my custom search mode would be selected automatically when the search dialog is opened. I guess this is currently not possible. But maybe somebody has an idea? Thanks! Angela0Views0likes3CommentsSave User choices or Create Default list in Refine button CUI
When clicking the refine button : a list is presented : with already checked values corresponding to the columns (properties) of the presented ItemType. The method responsible of the Init of the button is : cui_common_refine_init Code : Toolbar.extendFormatters({ refine: columnSelectionMediator.cuiToolbarFormatter.bind(columnSelectionMediator) }); return { type: 'refine' }; I would like to know if it's possible to personalize these filters on the search by code or configuration, or associated to user preferences, or saving when checked/unchecked by User ? Everything is already checked and some users would like to be able to have a "default" view. Thanks0Views0likes1CommentJavascript method to set the default value in search grid?
We need to limit the search results of "Document" item for certain identity. The default value of "Classification" should be prefilled to "General" and should be unchangeable by the user. I was thinking if I can get the current identity of the user and then call a function that would prefill the "Classification" to "General" and make it uneditable. I have a code for finding the identity of the user. I need to know how to target the "Classification" field of "Document" item type in the search grid view thanks!0Views0likes2CommentsOpening Aras Part Search on a new Aras Tab through an HTML page
Hello everyone! I am trying to create a custom HTML page which links to other Aras pages such as the Part Search Grid. My issue is including a script in the HTML page that links to an Item Type. I have been guided towards using the method cui_ivicb_nav_search_click, however I am unsure how to implement this with an HTML page. Could you suggest me some possible solutions for this? Kind regards, WishalSolved0Views0likes2CommentsPrefill simple search criteria in the search grid
Hello, For Documents item type, in the search grid I need the "Classification" to be prefilled to "General" . I applied client side method to "classification" and "search_default" properties of Documents but it doesn't work. "search_default" property did not exist before so I just added it, I don't know if that makes a difference. method: return {classification:{filterValue:"General",isFilterFixed:false}};Solved0Views0likes8CommentsNeed server method to hide property of an Item for specific identity
As the tilte says. We want the "Classification" property of ItemType "Document" to be hidden for a user if they are part of a specific identity. I also want the value of "Classification" to set as "General" for these users when they search of Documents. I have achieved this. However, now we do not want the users of this identity to be able to see the "Classification" column in the search grid. How do I accomplish this. I apply the code below to "onBeforeGet". Mentioned below is my method: Innovator inn = this.getInnovator(); //Get ID of the logged in user Item alias = inn.newItem("Alias","get"); alias.setProperty("source_id",inn.getUserID()); alias.setAttribute("select","related_id"); alias = alias.apply(); string relatedId = alias.getProperty("related_id"); int count = alias.getItemCount(); string target = "DBA5D86402BF43D5976854B8B48FCDD1"; if(relatedId == target){ this.setProperty("classification", "General"); this.createRelationship("Property", "edit"); this.setProperty("id", "DE3C90BC7B434151A6F3C9D97A5B2B69"); // Property ID this.setProperty("is_hidden", "1"); // Hide the property this.setProperty("is_hidden2", "1"); // Hide the secondary property } return this;0Views0likes1CommentTree Grid Filtering on multiple levels
Hello, I'm looking through the community forum for some information regarding filtering/searching on PE_BomStructure tree grid view and query definition. I've got a multi-level BOM that I'd like users to be able to filter by Part Number ( string or item). I followed the Query Element Builders Guide and the blog post "Filter a Tree Grid View with Parameters"; however it only works with the parameters at the top level. Is there any way to effectively filter the 2nd level rows and return the expandable level 1 rows where the item is found? I added a visualization in the attachment.0Views0likes3CommentsPass a Property to a Search Grid
For our projects we may have a large number of documents and we're considering different ways to handle this other than trying to recreate some sort of "folder" ItemType to assign them to. One concept we have is the idea of either having buttons or some sort of query that would run and display the Search Grid, but with various pre-filled parameters and automatically run the search. Any example would be the following: - Document ItemType has a property of _project which is associated to the ItemType Project - Document ItemType also has properties like _function or _discipline which could be Engineering or otherwise The button would launch the Search Grid, pre-fill the Project with the Project filled out in the grid and pre-fill the _function or _discipline as needed. I've added a button to the toolbar and been able to assign a method to launch the Document Search grid via http://ourserver/innovatorserver/client/?StartItem=Document, but I don't know how I could pre-fill the fields and auto-execute the search. Any ideas on this? Thanks in advance!1.8KViews0likes1CommentSaved Search parameters not getting cleared when clicking back on the itemtype?
Hi everyone, I have an itemtype for which I have a saved search.When I click on the itemtype on TOC after clicking on saved search,the parameters applied for saved search are still there.I want to remove the filtering parameters and show an empty grid the way it shows when auto search is off. NOOB730Views0likes0Comments