Skip to main content
Nintex Community Menu Bar
Question

Does Skuid Have a NEW button and Record Type selection page for leads?

  • July 10, 2024
  • 6 replies
  • 22 views

Forum|alt.badge.img+7

Is there a way when a new lead record is created, that prior to going into the edit page, a record type page first shows up in order to select the lead record types? 

This topic has been closed for replies.

6 replies

Forum|alt.badge.img+20

Make it part of the new page? Use a UI only boolean value called “RecordTypeSelected” to conditionally render the RecordType field first all by itself.


Forum|alt.badge.img+4
  • July 10, 2024

@ Pat: Good suggestion.


Forum|alt.badge.img+7
  • Author
  • July 10, 2024

oh this seems over my head and through the woods…are these the correct settings?


Forum|alt.badge.img+20

Sure. You just won’t be presenting the field to the user. You’ll be creating a model action when the RecordType field is edited to set this field to True. Then you have a method to control which components to present to the user. When false show a field editor with the RecordType field rendered as a picklist. When true show everything else. 😉


Forum|alt.badge.img+7
  • Author
  • July 10, 2024

Thank you Pat!

Quick question, which is the better method in your opinion to create a new record?

Using a button with button actions or with js?


Forum|alt.badge.img+20

Always action framework, as it allows easier management. Assume anyone else working on this page or in future doesn’t know js.