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 charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
67 views
0 likes
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
150 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
162 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|
||
|
Started by CarlTrading, 05-10-2026, 08:12 PM
|
0 responses
99 views
0 likes
|
Last Post
by CarlTrading
05-10-2026, 08:12 PM
|
||
|
Started by Hwop38, 05-04-2026, 07:02 PM
|
0 responses
287 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|

Comment