playMaker

Author Topic: Custom Actions: Any way to specify field order? [Solved]  (Read 2219 times)

Tricky_Widget

  • Junior Playmaker
  • **
  • Posts: 62
Custom Actions: Any way to specify field order? [Solved]
« on: March 19, 2015, 11:29:04 AM »
I'm making some custom actions that have shared components in an abstract class.  This is handy, but causes problems with the order of my fields.  It always displays the individual fields first and then the shared fields second.  Which works, but is a bit confusing to use because fields that should go together are getting split up.

Is there any way to specify what order the fields are listed in the action?

Thanks!
« Last Edit: March 20, 2015, 02:45:13 PM by Tricky_Widget »

jeanfabre

  • Administrator
  • Hero Member
  • *****
  • Posts: 15620
  • Official Playmaker Support
Re: Custom Actions: Any way to specify field order?
« Reply #1 on: March 20, 2015, 01:37:49 AM »
Hi,

 yeah, I was confronted to this indeed. I don't think there is a way, and usually what I do is create a custom editor which can then quickly reorganise fields around.

 Check out the quaternion actions on the ecosystem, they use this technic.
 Bye,

 Jean

Tricky_Widget

  • Junior Playmaker
  • **
  • Posts: 62
Re: Custom Actions: Any way to specify field order?
« Reply #2 on: March 20, 2015, 02:44:55 PM »
Ah, thank you for the tip!