2
votes

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

3

3 Answers

1
votes

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.

1
votes

You can achieve this by creating a Dialog which will pass the values to Custom workflow activity(Written in c#). I have recently created a dialog for user registration.

Have a look at these link:

Link 2

Link 1

Link 3

Link 4

1
votes

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.