Browse By Tags

  • 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…
  • 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…
  • How 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. const param = { aras: aras, type: 'SearchDialog', dialogWidth: 1200, dialogHeight: 500, itemtypeName: 'Part', defaultSearchMode: "AML", // ?????? }; const topWnd = aras…
  • Customize 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.
  • Save 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…
  • Opening 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 th e method cui_ivicb_nav_search_click…
  • Need 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…
  • Javascript 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…