cancel
Showing results for 
Search instead for 
Did you mean: 

Creating class instances from a flow-logic BSP

Former Member
0 Kudos

Hello,

is it possible to create a model instance or a class instance from a BSP with flow-logic?

I have a MVC application with a intro BSP-page with flow logic and I would like to create my model not with the init.do of my first controller-class but earlier when the flow-logic page has been executed.

I know, that I can access static methods/attributes of classes but I would like to create an instance which was created by the flow-logic page and can reused with the MVC application later on.

Thanks, Thomas.

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member181879
Active Contributor
0 Kudos

hallo Thomas,

In principle this is not possible. When each model is created, it is assigned to a specific control as owner. The model ids are later prefixed with the controller id, and the controller must do some additional work to update the model on incoming requests.

bye, brian