Reputation: 863
So basically I am making a Jail Management System. The first part is where an inmate is booked and that session has 5 screens namely:
Booking Screen 1 Booking Screen 2 Booking Screen 3 Medical Property Commissary
I have created entities and forms for all of them. I want the functionality where i can move from the first booking screen to the rest by using like a "Next" button like we usually have in online forms over the internet. Can i achieve this? or is there some way where I don't have to go to every entity and create a New record manually?
Regards
Upvotes: 2
Views: 212
Reputation: 56
Depending on the number of fields you could use 5 tabs instead of pages. The last field of every tab could hold a javascript that opens the next tab and close the previous tab.
Upvotes: 1
Reputation: 213
As Scorpion suggestion, you can use dialog if all of input fields were in the same entity. If you want to use the Wizard to collection fields which were held in different entities. Then you can make a custom web page(e.g. ASP.NET) to handle it.
Upvotes: 1