-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Breaking change: process is @this by default, used to be @all #371
Comments
This is a deliberate change I've forgotten to document. The idea was to align the default values of the |
@tandraschko @TheCoder4eu @asterd @zhedar Should we align the behavior of BootsFaces with PrimeFaces? I'd like to do that, but that would mean to introduce two breaking changes in a row. On the other hand, if BF 0.8.6 follows 0.8.5 only one or two weeks later, we might get away with it without annoying too many people. What do you think? |
So if we're aligning with PrimeFaces, we would actually have the some behaviour as pre 0.8.5? I guess most users with bigger applications haven't upgraded that fast, so that probably won't lead to big problems. 👍 Not to do things all different may be the best way, if we want the frameworks to coexist. The JSF spec only mentions I'm not sure about this though. Is there a downside to process |
Default to process="@ALL" has little to none effect on performance. Basically, what's sent to the server is the user's input, which rarely exceeds a single kilobyte per request. The only drawback is that it violates the HTML specification, which insists on sending only one form at a time to the server. But that's a silly restriction we can safely ignore. |
process != form parameters! In PF there is a special option called "partialSubmit=true", which only sends the inputs to the server which will be processed. |
counterpart, and fixed a typo concerning the BsFEvent that prevented events from being processed correctly
Done. |
I noticed this with the
b:image
attribute, but it may be a broader problem. When I uploaded the chess demo to AngularFaces.net, the default value of theprocess
attribute was@ all
. Now it seems to be@this
. It seems like something has changed this spring.The text was updated successfully, but these errors were encountered: