Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Sorting Groups of Controls
Collapse
X
-
Sorting Groups of Controls
I have three different Groupnames with various controls. I am using the Order attribute to set the order within the group. How do I set the order of the Groups themselves? -
Hello swooke,
Thanks for your post.
The CategoryOrder Attribute could be used for this task.
CategoryOrder Attribute - https://ninjatrader.com/support/help...rattribute.htmCode:[Gui.CategoryOrder("My Strings", 1)] // display "My Strings" first [Gui.CategoryOrder("My Bools", 2)] // then "My Bools" [Gui.CategoryOrder("My Ints", 3)] // and finally "My Ints" public class MyCustomIndicator : Indicator { #region Properties [Display(GroupName="My Ints")] public int MyCustomInt { get; set; } [Display(GroupName="My Bools")] public bool MyCustomBool { get; set; } [Display(GroupName="My Strings")] public string MyCustomString { get; set; } #endregion }
Please let us know if there is anything else we can do to help.
-
Hello DTSSTS,
Thanks for your note.
This code would be placed at the class level in your script as seen in the code that was shared by my colleague Jim.
See the attached reference sample demonstrating this.
Let us know if we may assist further.Attached Files<span class="name">Brandon H.</span><span class="title">NinjaTrader Customer Service</span><iframe name="sig" id="sigFrame" src="/support/forum/core/clientscript/Signature/signature.php" frameborder="0" border="0" cellspacing="0" style="border-style: none;width: 100%; height: 120px;"></iframe>
- Likes 1
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
64 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
94 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
51 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
108 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
63 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment