RE: [coldbox:10813] event.getvalue issue in 3.1?

That’s interesting. You don’t happen to have a setView() method in your decorator as well do you?

Can you post the function in question from the handler?

Thanks!

~Brad

The decorator was in the email. Here is the handler function.

function index2(event,rc)
{
THIS.userStruct = structNew();
THIS.userStruct.firstname=“Jonathan”;
THIS.userStruct.lastname=“Perret”;
THIS.userstruct.userid=1;
rc.rsUser=this.userStruct;
event.setView(“index”);
}

If I comment out the getvalue function in the context decorator the error goes away. I don’t see why that function needs a setview command. I pretty much copied it from the wiki.