Refreshing xClass Field on Form in Field Event OnChange
So I wrote a client side method so when you change the Classification of a part, it selects a matching xClassification. This part is working, except the UI isn't updating with the selection of the xClass, so its prompting me to enter the required properties for my xClass, but I can't see them. How do I get the xClass field on my form to update so that it displays my new selection? Several examples used aras.uiReShowItemEx() but that pulls from the database, but the xClass selection has not be saved to the Part yet... so its blank. It looks like form.populate() is the right idea because its not pulling from memory but everything I try returns form as null...188Views0likes3Commentsxclassification dialog from custom method
hello i'm begining a project, the idea is to have a an action launch a dialog to select a xclass. I would like to launch the same dialog as the one that pops up when adding a part xclass and x property(see below): after the user selected a class i want to retrieve the name of the class he chose. The following step is to have a second dialog (depending on the classification chosen) this second dialogs might be hard coded or dynamically buit i'm still unsure and they are going to look like the form used to fill the xproperty after you choose your part class but slightly different: i want to add a column of check boxes for future business logic. i've tried to search for the xclass tree selection dialog but couldn't find it i've tried to display some that i could find in the code tree but without sucess, i used the dialog api, here is my code: var param = { aras: top.aras, type: "HTMLEditorDialog", sHtml:"here i've tried to put just the name and the full path but it didn't seem to work as even when i changed form i was always getting same form opening ", dialogWidth: 1000, dialogHeight: 500, }; // This will be called after the dialog is closed function callback(res) { if (res) { alert(res + " loves learning about new opening HTML pages as dialogs!"); } }; // Open the dialog var topWnd = top.aras.getMostTopWindowWithAras(); var wnd = topWnd ? topWnd : window; wnd.ArasModules.Dialog.show('iframe', param).promise.then(callback); any help is welcome thanks lucas1.5KViews0likes1CommentDisplaying In-Line Units for xClass xProperties
Migrating from another system, they have a lot of properties that also include units. Like this: How can I modify the Extended Classification display to show units in line like this? My plan so far is to build out ItemTypes for each type of measurement (Length, Temperature, etc) similar to the default 'Measurement Units', including a conversion value to whatever base unit is decided. (Anyone know why there is a 'viewer' on this itemtype?) So then I could build xProperties linked to the ItemType for that type of unit, and add it to the xClass which would put the UoM as another line in the xProperties So the question is how would I modify the xClass Display so that I could pair up the two properties and get an in-line display of the units? (and do it for some properties, not others, and for many properties within an xClass)134Views0likes1CommentLoad xClass and xProperties, and link xProperties to multiple xClasses from AML
We want to load 1k+ xclasses to Aras, we are talking about 4k+ xproperties here. When we are running AML for creating relations xClass_xProperty_Flatten and xClass_xPropertyDefinition to link them to class tree, it fails with error : <faultstring><![CDATA["xClass_xProperty_Flatten" can be added or deleted or updated only in XTree context]]></faultstring> <detail> <af:legacy_detail><![CDATA["xClass_xProperty_Flatten" can be added or deleted or updated only in XTree context]]></af:legacy_detail> <af:exception message=""xClass_xProperty_Flatten" can be added or deleted or updated only in XTree context" type="System.ArgumentException" /> </detail> I can load property definitions, but not classes, but can’t map the properties to classes. How can we mass create and reuse these xProperty definitions in more than one class from AML, by creating relations correctly?2.4KViews1like2CommentsCan you Remove xClass relationship with onChange field event?
I'm trying to clear out the xClass relationship when the class of a part is changed. The code I have below is ran on the filed event of the drop down onChange, however it doesn't remove the xClass relationship. var rootItem = document.thisItem; rootItem.fetchRelationships("Part_xClass"); var xClassRelationship = rootItem.getRelationships("Part_xClass"); if(xClassRelationship.getItemCount() > 0){ var current = xClassRelationship.GetItemByIndex(0); rootItem.removeRelationship(current); } return rootItem;3.5KViews0likes1CommentHow to Update the value of xClasss xProperty by AML or API?
Hi Eli, How to Update the value of xClasss xProperty via API or AML? I can get the value of an xProperty via MyItem.getProperty("xp-MyPropertyName") or AML. But I failed to update xProperty this way. Item MyItem = innovator.newItem("Part","edit"); MyItem.setID("xxxxxxxx"); MyItem.setProperty("xp-length","10"); MyItem.apply(); Lin6.2KViews0likes3Comments