• Disable more than one text field on the form

    Hi Community, I am using a code from the "Disable Form Fields"-blog ( https://community.aras.com/b/english/posts/disable-form-fields/ ) in one of my methods. In the test phase I realized that the code for the text field only works on one field. I…
  • Download file to specific location on client machine

    Hello All, I am trying to checkout file through client code but file.checkout downloads to browser download location. Using Chrome browser. ActiveXobject is not supported in chrome. Any help/suggestion would be helpful Thanks
  • Event Handler Failed OnInsertRow

    Hi I am new to Aras so i dont really know what am doing. However i have been working on a small project where i require a row event. when i add the below code to the Relationship type with the event handler OnInsertRow i keep getting an error. can someone…
  • How to set default value to list onformpopulate

    Hi, I've list field on some of the document classifications which is mandatory field, I have to set default value, it is getting set on that field but while saving the document, getting error "Please provide value for mandatory property". Below is…
  • How can I hide some columns in relationship grid base on the some rule of parent item type

    I need to hide some columns in relationship grid base on the some rules of parent item type when form on populated. Is it possible?
  • Hi All, Do any one knows property events that are available in ARAS and when they are triggered ? eg. OnEditFinish,onedit and etc Property is on Item and i need to write method which will trigger whenever it's property is updated. Please help

    Property events
  • Error while sending email to the group Identity when email id not present for some users

    Hi Experts, I am using the Aras OOTB function to send the emails. Please find below code - document.thisItem.email(EmailBody, GroupIdentity); When all the members of the group identity have email ID's present then it is working fine, but if any…
  • How to render a boolean field in a form as HTML with images or colored text

    has_change_pending in Part/CAD/Document forms is a check box. I want to make it - An image, if true show one image, if false show another Or - A colored text, if true show in one color, if false show in another color Trying with making the field…
  • Fast grid

    How to disable the fast grid in searching?
  • I am looking for an alternative for window.focus API which will work in Aras UI

    Hello Guys, I am working on Aras 11 SP8 version, I am looking for an alternative for Window.Focus API. Window.foucs works in Internet Explore but it is not supported by Google Chrome 74. Can you please share alternative way where I can switch focus…
  • Can't create BOM with multiple parts through method

    Hello, I'm having problems creating part relationships through a method. I have an array of arrays containing data that I want to use to generate a number of parts and their BOM relationships. The parts are being created properly but when i try to generate…
  • Using third party js libraries with file selection

    Hello, I'm trying to use a third party JavaScript library to read a csv file by selecting a file through an action in Aras, but I'm having trouble getting the selection to work well with the third party library. In the programmers guide there's an…
  • getPreferenceItemProperty and setPreferenceItemProperty

    Hi, I am implementing a Generic action form UI to let user pick his default group among multiple groups he belongs to. I could achieve it with adding a property to Core_GlobalLayout and write getter and setter for this with sql, but when I use API…
  • Implementing User Options like Choose CM Options

    I am working on a user option dialog where they can pick and choose some values[ logged_in_group to start with] I have created placeholder properties in Core_GlobalLayout for this. Get_IdentityMembership_Details and Get_AllGroups_Details works fine…
  • How to reference the ItemType in the current tab in a Dialog box?

    I'm working on a client side method to clone an ItemType using a dialog box. My approach is to make a form with a check box to choose to copy properties and another check box to copy values from a relationship tab, and a button for "Done" and "Cancel…
  • Tech Tip: Add Keyboard Shortcuts through CUI

    We've previously covered how you can utilize CUI to add custom buttons to toolbars . However, you can also take advantage of CUI to add keyboard shortcuts for more advanced users. In this blog post, we will cover how to add a shortcut to select all of…
  • Standard Aras Dialogs

    In a another blog post , we covered how to open dialogs within Aras Innovator using custom forms and HTML pages. However, Aras Innovator also supports a number of built-in dialogs that offer common functionality. A previous blog post also covers how to…
  • JS event when ECO form is saved?

    Hi, Is it possible to listen to some kind of event to know when the ECO form has been saved? I have an HTML field in the ECO form, where I have put a <script> tag with JavaScript code within. I want that code to execute again after the form has been…
  • Add DropdownList with values

    I  added a dropdownlist on a form, I am unable to make reference to the dropdownlist object via name or type in Javascript. And the object doesn't seem to exist when viewing HTML source. I am trying to populate the dropdownlist  with some values when…
  • Disable Add relationship

    Hi all, I should disable the ability to create a new relationship when an Item is in a certain state. For example: I have an Item Document with an relation to Item File. When the user create a new document (state document = New)  he can create a new…
  • Disable date and Item in Form

    Hi, I have a form with an field type="Date" (Name=expiring_date) and another field type="Item" (Name=item_code). I would disable during the OnFormPolulated event if the state is different from released. I tried: document.getElementsByName("expiring_date…
  • Disabeling dropdown field on form

    Hi I have some strange behaviour on a form. I have added a JaveScript method to disable some fields if the property "kam_is_transferred" = 1. The strange thing is the code below works on text fields but it doesn't seem to work on dropdown fields. Is…