<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Input port menu in Node Editor does not respect order index]]></title><description><![CDATA[<p dir="auto">We set the order index of the ports and they are displayed properly in the Attribute Editor, but the input port menu does not respect this and groups and ports are displayed in a "random" order, that does not match the UI and is quite confusing.<br />
<img src="/forum/assets/uploads/files/1728486251197-5142e4ab-795f-40ed-b5ce-b53056094544-image.png" alt="5142e4ab-795f-40ed-b5ce-b53056094544-image.png" class=" img-fluid img-markdown" /><br />
Is this a limitation or is there a flag or other attribute we have to set to match the layout of the Attribute Editor?</p>
]]></description><link>http://developers.maxon.net/forum/topic/15761/input-port-menu-in-node-editor-does-not-respect-order-index</link><generator>RSS for Node</generator><lastBuildDate>Mon, 08 Jun 2026 15:18:29 GMT</lastBuildDate><atom:link href="http://developers.maxon.net/forum/topic/15761.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 09 Oct 2024 15:05:19 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Input port menu in Node Editor does not respect order index on Fri, 11 Oct 2024 08:48:33 GMT]]></title><description><![CDATA[<p dir="auto">Hey Peter,</p>
<p dir="auto">you can reach out directly to us via mail. While there is some end-user aspect in this, I think it is best handled by SDK. But thanks for asking and caring about submitting to the right place! I will forward your mail/request to the right places. But as hinted at above, I do not see the Node team being all thrilled about this.</p>
<p dir="auto">Maybe also make the case why this is needed as making the case for something usually increases your chances compared to a "I want X"! Maybe also line out how you envision for this to work. E.g., request to introduce an attribute which can be set on port bundles. As for example <code>maxon::DESCRIPTION::UI:NOSORT</code> which is then respected by <code>BuildPopupMenuForDescription</code>.</p>
<p dir="auto">What we very likely will not do, is that we completely turn this off, as both Scene Nodes and Redshift have a lot of data types with many sub ports where it will be hard to find things without alpha-numerical sorting. I could be wrong about all this as I am neither in the Nodes nor Redshift team, but that is the hunch I have when I look at this system.</p>
<p dir="auto">Cheers,<br />
Ferdinand</p>
]]></description><link>http://developers.maxon.net/forum/post/75127</link><guid isPermaLink="true">http://developers.maxon.net/forum/post/75127</guid><dc:creator><![CDATA[ferdinand]]></dc:creator><pubDate>Fri, 11 Oct 2024 08:48:33 GMT</pubDate></item><item><title><![CDATA[Reply to Input port menu in Node Editor does not respect order index on Fri, 11 Oct 2024 08:16:56 GMT]]></title><description><![CDATA[<p dir="auto">Hi Ferdinand,</p>
<p dir="auto">Thank you for your reply. Sorry for not being completely clear. Yes, I meant maxon::nodes::ReqOrderIndex. I feel like it would be more natural if the input menu would match the order in the Attribute Editor, instead of listing the items in alphabetical order. Being able to control the behavior via the API could be welcome. I'll make a feature request, just in case. What's the best option to file an API request? Should I use the form in <a href="http://support.maxon.net" target="_blank" rel="noopener noreferrer nofollow ugc">support.maxon.net</a> or the contact form here?</p>
<p dir="auto">Thanks,<br />
Peter</p>
]]></description><link>http://developers.maxon.net/forum/post/75126</link><guid isPermaLink="true">http://developers.maxon.net/forum/post/75126</guid><dc:creator><![CDATA[peter_horvath]]></dc:creator><pubDate>Fri, 11 Oct 2024 08:16:56 GMT</pubDate></item><item><title><![CDATA[Reply to Input port menu in Node Editor does not respect order index on Thu, 10 Oct 2024 10:01:29 GMT]]></title><description><![CDATA[<p dir="auto">Hey <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/peter_horvath">@<bdi>peter_horvath</bdi></a>,</p>
<p dir="auto">Thank you for reaching out to us. A little bit of code or a DataDescription dump would have went a long way here as what you do is not very clear to me. When you say that you <em>'set the order index of the ports'</em>, I assume that you mean that you set the <a href="https://developers.maxon.net/docs/cpp/2025_0_1/namespacemaxon_1_1nodes.html#aef616807431b123dd4013df52345707c" target="_blank" rel="noopener noreferrer nofollow ugc">maxon::nodes::ReqOrderIndex</a> either programmatically in code or indirectly via the resource editor, right?</p>
<p dir="auto">And you are unhappy about the alpha-numeric sorting in the context menu of the Node Editor, e.g., what is also happening in the attribute group <em>'Base Properties &gt; Reflection'</em> here for Redshift?</p>
<p dir="auto"><img src="/forum/assets/uploads/files/1728553530346-c6f6511e-672a-48e9-b223-ec4bab4d72a3-image.png" alt="c6f6511e-672a-48e9-b223-ec4bab4d72a3-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">This context menu is effectively being built with a public function, namely <a href="https://developers.maxon.net/docs/cpp/2025_0_1/classmaxon_1_1_data_description_u_i_interface.html#a2b2b5c2efe2c0b7200fe595be3fef39d" target="_blank" rel="noopener noreferrer nofollow ugc">maxon::DataDescriptionUIInterface::BuildPopupMenuForDescription</a>. In its implementation, it forcibly sets <a href="https://developers.maxon.net/docs/cpp/2025_0_1/namespacemaxon.html#af93bbc5a9eebef4e3f3e32334cf62e04" target="_blank" rel="noopener noreferrer nofollow ugc">maxon::DESCRIPTIONMESSAGECHECKFLAGS::SORTSUBMENU</a> for the generated submenu; which then causes the presenter to alpha-numerically sort the entries when it is displaying them.</p>
<p dir="auto">So, in theory, the node editor is capable of displaying the entries in their <code>maxon::nodes::ReqOrderIndex</code> order, it is just a feature of the Node Editor that they are alphanumerically sorted at the moment (which also strikes as the better choice for long lists). So, to give here a clear answer, no, this is not possible at the moment. But you are free to make a feature request via mail. My hunch would be that the node team will not give this the highest priority but I might be wrong.</p>
<p dir="auto">Cheers,<br />
Ferdinand</p>
<p dir="auto">PS: As far as I understand the impl. of <code>BuildPopupMenuForDescription</code>, the same applies for <code>DESCRIPTIONMESSAGECHECKFLAGS::VISIBLE</code>. Ports technically can flags themselves for being invisible, but <code>BuildPopupMenuForDescription</code> also makes everything forcibly visible. But Maxime owns that other subject, maybe he finds out more.</p>
]]></description><link>http://developers.maxon.net/forum/post/75120</link><guid isPermaLink="true">http://developers.maxon.net/forum/post/75120</guid><dc:creator><![CDATA[ferdinand]]></dc:creator><pubDate>Thu, 10 Oct 2024 10:01:29 GMT</pubDate></item></channel></rss>