<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://www.aras.com/community/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Kyle V. さんのアクティビティ</title><link>https://www.aras.com/community/members/phinnix</link><description>Kyle V. さんの最近のアクティビティ</description><dc:language>ja-JP</dc:language><generator>Telligent Community 12</generator><item><title>Let me Help You</title><link>https://www.aras.com/community/achievements/687f4b6d-e18a-4e55-836c-49926ca2c9d9</link><pubDate>Wed, 03 May 2023 18:53:34 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:5964da3c-2869-4049-a178-e8585783b361</guid><dc:creator /><description>Answer a question that is verified as helpful or correct.</description></item><item><title>How can I trigger the classification to update and change forms from a different property?</title><link>https://www.aras.com/community/f/development/37961/how-can-i-trigger-the-classification-to-update-and-change-forms-from-a-different-property</link><pubDate>Thu, 27 Apr 2023 18:21:41 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:cd129ce8-c879-43a0-92b9-b5b55030ee74</guid><dc:creator>Kyle V.</dc:creator><description>&lt;p&gt;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&amp;#39;m trying to prevent mistakes from happening by providing 2 drop downs one that shows the workflow type and another that offers the form options. On selecting the form options, I need to update the classification and have the form change to the proper form. My current code updates the classification but does not execute whatever code causes the form to change on the classification update the way it does if you type it in or use the classification dialog box. Below is the code I&amp;#39;m starting with I don&amp;#39;t know if there may be an API I can call that does this change or if there is a way to refresh the iframe that I&amp;#39;m not aware of. Any help is greatly appreciated.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="javascript"&gt;var inn = top.aras.newIOMInnovator();
var formtype = document.all(&amp;quot;form_type&amp;quot;).value;
var worktype = document.all(&amp;quot;workflow_purpose&amp;quot;).value;
var classification = &amp;quot;&amp;quot;;

switch(worktype){
    case &amp;quot;New Work&amp;quot;:
        if(formtype = &amp;quot;form1&amp;quot;){
            classification = &amp;quot;form1/Create New&amp;quot;;
        }else{
            classification = formtype+&amp;quot;/&amp;quot;+worktype;
        }
        break;
    
    case &amp;quot;Other Work&amp;quot;:
        if(formtype = &amp;quot;form2&amp;quot;){
            classification = &amp;quot;form2/Other Work&amp;quot;;
        }else{
            classification = formtype+&amp;quot;/&amp;quot;+worktype;
        }
        break;
}

window.handleItemChange(&amp;quot;classification&amp;quot;,classification);
window.handleItemChange(&amp;quot;form_type&amp;quot;, formtype);

return this;&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Customizing Forms: Tips and Tricks</title><link>https://www.aras.com/community/b/english/posts/customizing-forms-tips-and-tricks</link><pubDate>Fri, 16 Apr 2021 17:30:00 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:85fc6d99-32e2-47c5-9e91-c95a38c5b033</guid><dc:creator>Skyler Crossman</dc:creator><description>&lt;p&gt;When you&amp;rsquo;re working in Aras Innovator, most of the time you&amp;rsquo;re working in a Form. Forms are where you create new items, edit existing items, write code, and even where you edit a Form! Learning to make your Forms easier or quicker to use is a lesson that you can carry forward into every Item you use- and remember Labs&amp;rsquo; unofficial motto, &amp;ldquo;Everything Is An Item!&amp;rdquo;&lt;/p&gt;
&lt;p&gt;For this article, we&amp;rsquo;re going to look at some tips and tricks for Forms. While the basics of Forms can be found &lt;a href="/b/english/posts/aras-fundamentals-views-and-forms"&gt;here&lt;/a&gt;,&amp;nbsp;today we&amp;rsquo;re going to focus on more niche options for Fields. Screenshots and steps are taken from Aras Innovator Version 12 SP 15, but should be roughly the same for any service pack for Version 12. We assume that you have an admin account on the Aras Innovator instance.&lt;/p&gt;
&lt;h2 id="mcetoc_1f3dlljdf0"&gt;Grouping Fields&lt;/h2&gt;
&lt;p&gt;Sometimes you&amp;rsquo;ll see forms with a group of inputs. For developers used to working with HTML or Windows Forms, the idea of outlining several pieces of a form with a groupbox or a div is a natural idea. Aras Innovator has you covered with containers.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Open up the form you want to edit.&lt;/li&gt;
&lt;li&gt;Click the Edit button in the top left.&lt;/li&gt;
&lt;li&gt;Make a new field by clicking one of the field buttons- we&amp;rsquo;ll use a text box.&lt;/li&gt;
&lt;li&gt;In the Field Type tab, change that field&amp;rsquo;s Field Type to Group Box.&lt;/li&gt;
&lt;li&gt;Now, for any fields that you want to put in that box go to their Field Border tab, and type the name of your group box into the Container Name field.&lt;/li&gt;
&lt;li&gt;Make sure that, In Field Physical, the position is set to static and there is a value for Field Order.&lt;/li&gt;
&lt;li&gt;Click&amp;nbsp;save.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Now, you&amp;#39;ll see your second field just under the label for your group box. You can repeat steps 5 and 6 as many times as you want, to add as many fields as you want to the box. They&amp;#39;ll sort themselves by the Field Order, lowest first, so that they&amp;#39;ll show up Field Order 1 first, Field Order 2 next, and so on. It&amp;#39;s a good idea to leave gaps, perhaps counting by ten, in case you later want to insert something without reordering all of the Field Order values.&lt;/p&gt;
&lt;h2 id="mcetoc_1f3dlljdf1"&gt;&amp;nbsp;Field Border&lt;/h2&gt;
&lt;p&gt;While our inputs are new grouped, and will stay together as you move the group box around the form, this might not be obvious to your users. Of course, it doesn&amp;rsquo;t have to be. Maybe you just want the convenience of the group box. If you want to make it apparent to the end user however, the field border can be used to that effect quite well.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Select the box from the list of fields at the top right of the form editor.&lt;/li&gt;
&lt;li&gt;In the Field Border tab, change the Border Width to be a positive number. A little goes a long way here, and it&amp;rsquo;s likely you&amp;rsquo;ll be satisfied with a border width of 1.&lt;/li&gt;
&lt;li&gt;Hit Save, at the top left.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Now you should see a clear border around your fields, allowing your users to understand that these things are related. You did this all without writing code! Of course, if you&amp;#39;ve written significant amounts of web code before, you might be wondering if there&amp;#39;s a way to make use of your skills, and there is.&lt;/p&gt;
&lt;h2 id="mcetoc_1f3dlljdf2"&gt;Field CSS tab&lt;/h2&gt;
&lt;p&gt;Aras Innovator might be functional, but its aesthetics- white and gray- might not be what you&amp;rsquo;re looking for. If you want to add some style to your forms, the Field CSS tab is your ticket. Cascading Style Sheets are used throughout the web to alter the appearance of a website, controlling everything from color to the size and shape of buttons. In the Field CSS tab, you can use many of the same tricks you&amp;rsquo;d use on a custom website. There is however, one extra hoop.&lt;/p&gt;
&lt;p&gt;Because these styles need to work on individual form elements within Aras Innovator, they need a special prefix.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://gist.github.com/skycrossman/f31e45789b1acac3e258bf08370b47f9"&gt;gist.github.com/.../f31e45789b1acac3e258bf08370b47f9&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;While here we&amp;rsquo;re just setting the width, any web developer should be able to pick up right where we set width in our example and add any number of custom style tweaks. Aras Innovator chooses its style for clarity and simplicity, and to avoid clashing with what your organization wishes to look like. If you choose however, this can be a great way to remind your users that they&amp;rsquo;re still in your system, on a web page that your organization controls. We&amp;rsquo;re just glad you&amp;rsquo;re using Aras Innovator to do it. And of course, if you want to affect all of the elements on the form, you can always use the Form Body tab&amp;#39;s CSS field.&lt;/p&gt;
&lt;p&gt;Actually, lets say that again just to be sure. If you&amp;#39;re a web developer, you probably expect CSS changes to a button to affect all buttons. However, field CSS just affects this one example. If you want to affect all of the elements on the form, use the Form Body tab&amp;#39;s CSS field. &lt;span style="color:#ffffff;"&gt;I have made that mistake. It was less funny the third time.&lt;/span&gt;&lt;/p&gt;
&lt;h2 id="mcetoc_1f3dlljdf3"&gt;Conclude&lt;/h2&gt;
&lt;p&gt;&amp;nbsp;None of these changes are large, but they all demonstrate one thing: Aras Innovator is as flexible as you need. If you don&amp;#39;t need these tricks, then that&amp;#39;s because Aras Innovator is already doing what you need it to do, but you&amp;#39;re never locked into place. Later on, maybe you&amp;#39;ll decide you need to make a change in how your form appears, and if that happens then this article will still be here, and Aras Innovator will still be able to adapt to your changing needs. Are there any changes you&amp;#39;ve made to the look of Aras Innovator? Let us know in the comments below!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>How to disable the Lock button using a method during a Form OnLoad event</title><link>https://www.aras.com/community/f/development/9013/how-to-disable-the-lock-button-using-a-method-during-a-form-onload-event</link><pubDate>Mon, 03 Feb 2020 18:21:13 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:f3a8cca1-0394-41ce-8489-bb5157adc50e</guid><dc:creator>Kyle V.</dc:creator><description>&lt;p&gt;So here is my scenario...&lt;/p&gt;
&lt;p&gt;We are going to have users maintaining some Lists in Aras but we only want the user to be able to edit their lists and only their lists based on identity of the user logged in.&lt;/p&gt;
&lt;p&gt;For example:&lt;/p&gt;
&lt;p&gt;I could have the lists:&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;Available Design Materials&amp;quot; and &amp;quot;Design Shapes&amp;quot;&lt;/p&gt;
&lt;p&gt;and the identities: &amp;quot;Metal Work Management&amp;quot; and &amp;quot;Design Department Administration&amp;quot;&lt;/p&gt;
&lt;p&gt;Lets say &amp;quot;Available Design Materials&amp;quot; belongs to &amp;quot;Metal Work Management&amp;quot; and the list &amp;quot;Design Shapes&amp;quot; belongs to &amp;quot;Design Department Administration&amp;quot;&lt;/p&gt;
&lt;p&gt;If a member of the identity &amp;quot;Metal Work Management&amp;quot; is logged in they can add or remove values from the list &amp;quot;Available Design Materials&amp;quot; but they can not edit &amp;quot;Design Shapes&amp;quot; while the identity &amp;quot;Design Department Administration&amp;quot; can edit the list &amp;quot;Design Shapes&amp;quot; but not the list &amp;quot;Available Design Materials&amp;quot;.&amp;nbsp; The way I&amp;#39;m purposing controlling this is to add a relationship to the List itemtype called Can Edit that connects to the Identity itemtype when the list form loads I want to read the Can Edit relationship and see what identities have access to edit this particular list and if the user is not part of one of those identities disable the lock button as though the user only has view permissions on the List itemtype. So far I am able to flip through my relationship and return a true/false depending if the user is apart of the identities in the Can Edit relationship but I cannot figure out how to see the toolbar buttons from the method or how to disable the lock button.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Gandharv</title><link>https://www.aras.com/community/members/phinnix/activities/145c1f53-dedc-45d0-baa5-103cba95f058</link><pubDate>Tue, 12 Nov 2019 20:55:13 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:145c1f53-dedc-45d0-baa5-103cba95f058</guid><dc:creator>Gandharv</dc:creator><description>&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Gopikrishnan</title><link>https://www.aras.com/community/members/phinnix/activities/e89f7870-7fc2-42ae-8048-9a6ecbd7cbbd</link><pubDate>Fri, 06 Sep 2019 17:10:30 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:e89f7870-7fc2-42ae-8048-9a6ecbd7cbbd</guid><dc:creator>Gopikrishnan</dc:creator><description>&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Ask A Question I</title><link>https://www.aras.com/community/achievements/460ac7df-7ccc-4c42-a204-9e05eef3be09</link><pubDate>Wed, 14 Aug 2019 21:41:01 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:e0729901-41e5-437a-a8eb-efeefce72e5f</guid><dc:creator /><description>Ask a question in a forum.</description></item><item><title>Closing a parallel subflow</title><link>https://www.aras.com/community/f/development/6214/closing-a-parallel-subflow</link><pubDate>Wed, 14 Aug 2019 21:41:00 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:a8a6def5-8515-4177-b978-ba122249ac49</guid><dc:creator>Kyle V.</dc:creator><description>&lt;p&gt;Hello - We are currently working on a workflow where we will have 2 subflows moving at the same time, we&amp;#39;ll call them &amp;quot;one&amp;quot; and &amp;quot;two&amp;quot;. If either &amp;quot;one&amp;quot; or &amp;quot;two&amp;quot; get voted to a previous step we want to cancel the other. To handle this I thought we could get away with containing them in their own subflow, &amp;quot;one-two&amp;quot;,&amp;nbsp; so when &amp;quot;one-two&amp;quot; closed it would close whatever is left open. This is not the case if &amp;quot;one&amp;quot; gets voted to the previous activity it would close and &amp;quot;one-two&amp;quot; closed but &amp;quot;two&amp;quot; stayed open and I can&amp;#39;t vote out of it because &amp;quot;one-two&amp;quot; is not longer active so the activity on &amp;quot;one-two&amp;quot; that holds &amp;quot;two&amp;quot;&amp;#39;s workflow is now closed as well. &lt;br /&gt;&lt;br /&gt;I can use methods to get to the other subflows ID I&amp;#39;m just worried about missing something while trying to cancel or close the other activities.&amp;nbsp; Would someone know if there is an existing method in Aras or a proper way to handle my scenario that I may be unaware of?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Kyle V.</title><link>https://www.aras.com/community/members/phinnix/activities/f496ccce-63d1-4b8f-b0e6-267ad5392a3d</link><pubDate>Wed, 14 Aug 2019 20:52:27 GMT</pubDate><guid isPermaLink="false">916d3f7e-8ddc-42f8-8d45-380822f51406:f496ccce-63d1-4b8f-b0e6-267ad5392a3d</guid><dc:creator>Kyle V.</dc:creator><description>&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>