Pass data beween state view in wizard?

Hey

i am trying to fetch data via http request and show it on next state view ?

Regards

You must probably fetch the data when showing the view in the default_<state> method.

Thanks a lot but how can i get the data from the input field in stateview like some strings

You can get the value of any field on the stateview on the server side by using:

self.<state_name>.<field_name>

You should replace:

  • state_name: With the name of the StateView you have in your wizard
  • field_name: The name of the field that you want to get.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.