• How can I trigger the classification to update and change forms from a different property?

    Hi Aras Community, I have a use case where my classification is technically controlling two things. What type of workflow they are on and what kind of form they see with the ability to switch the different kinds of forms. I'm trying to prevent mistakes…
  • Calling SearchDialog from Server method

    Hi, Is it possible to show SearchDialog from a Server method? I can use MaximazableDialog in Javascript to show the SearchDialog and get the response in callback. But I want to use such facility in a Server method. In my particular case, I am trying…
  • Innovator is not defined Client Side Error

    I've got a very simple method that creates a new PR from a button on a TGV. This worked perfectly in V12, but is not working in our V15 instance. Any help would be greatly appreciated! The error message is: The method 'create_PR_from_tgv' failed.…
  • Button not adhering to CSS

    Hello, I've got a button with very simple CSS (below). Problem is, the button isn't adhering to the code: {$this field rule} input; input[type="button"]{ height: 50px; width: 50px; } input[type="button"]:disabled{ background: #dddddd; } On both…
  • Value of field doesn't change if the field type is itemtype and have onchange event.

    My scenario is after selecting any value in field 'A' which is of item type, I have to set/change the value of field 'B'. so i added a onchange event in field 'A'. like this const inputValue = this.value; window.handleItemChange('field B name', "new…
  • Open specific ItemType form from a client side method

    Hi All, I have an ItemType that is setup with two forms attached, one being the main default form used for viewing, editing, adding etc.. I would like to however be able to through a client side method open the "Secondary Form" loaded with a context…
  • innovator service and Javascript Methods

    I would like to know if it's possible to run a javascript method from Innovator Service. I would like to be able to use javascript to make async http calls over the network. I can currently use C# for this but the methods will not be asynchronous as far…
  • client side method to add days for a date return aN/aN/NaN when the browser is in Italian language

    Hi, I created new item type which have properties like first_delivery_date (date), total_number_of _orders(int), frequency(int), frequency_list(list)(values: Days, weeks, months), delivery_date_of_each_delivery(text). I wrote a client side method in…
  • Additional Data column under CommandBarItem

    Hi Community, I'm creating a custom method for a button which needs json object to be passed in as a parameter to a Click Method. Could you show me where to look for how to use this "Additional Data" column ? Thanks, Truc
  • How to set the value of dropdown form field to null, when the field is disabled

    Hi, I have multiple dropdown fields in a form. For example i have 3 dropdown fields called 'list1', 'listA' and 'listB'. Thanks to @Christopher gillis for his blog , i can able to disable 'listB' dropdown field when the value of 'list1' is 'listA' …
  • How do I set default values with JavaScript?

    Hi Community, I want to set a default value on a text field with JavaScript. The form has already been created and I don't want to use a ItemType for my project. Can someone help me out? Regards, David
  • 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…
  • 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…
  • 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…
  • 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…