Fixed
Pinned fields
Click on the next to a field label to start pinning.
Details
Assignee
Luis MajanoLuis MajanoReporter
Roberto MarzialettiRoberto MarzialettiComponents
Fix versions
Affects versions
Priority
Major
Details
Details
Assignee
Luis Majano
Luis MajanoReporter
Roberto Marzialetti
Roberto MarzialettiComponents
Fix versions
Affects versions
Priority
Sentry
Sentry
Sentry
Created June 3, 2022 at 12:05 PM
Updated June 20, 2022 at 4:59 PM
Resolved June 17, 2022 at 3:38 PM
It appears that Coldbox has some problem with having nullSupport = true.
Some examples:
#1
for “Layout” arguments in setView():
This code:
event.setView( view="main/login", layout="login" )
and this
event.setView( view="main/login" ).setLayout( "login" );
gets this error:
It works if i use chaining:
event.setView( "main/login" ).setLayout( "login" );
#2
for “noLayout” arguments in setView():
This code:
event.setView( view="main/login", noLayout=true );
get this error:
Like “layout” works if I use the chaining method:
event.setView( "main/login" ).noLayout();
#3
for relocate() method
For any value (url, uri or event):
relocate( uri="/manager/dashboard" ); <-- my phisical url relocate( "/dashboard" ); relocate( event="MainController.dashboard" );
i get an error:
Attach the full error:
I talked about these things on forums with @Brad Wood:
https://community.ortussolutions.com/t/some-questions-starting-with-coldbox/9254