30 day money-back guarantee
Read more...
9 EUR lifetime license
15 EUR lifetime license
(nofollow link from sponsors page)
| 23% | | United States | | 15.7% | | India | | 7.3% | | Russian Federation | | 7% | | Colombia | | 6.1% | | Germany | | 5.2% | | United Kingdom | | 4.4% | | Poland | | 3.4% | | Netherlands | | 3% | | France | | 2.8% | | Canada |
| Today: | 737 | | Yesterday: | 1639 | | This Week: | 3962 | | Last Week: | 10059 | | This Month: | 10661 | | Total: | 33975 | |
Users| Most active users today from total of 27: | | matto, rottenberg, dontbugmeplease, Adelavigne, eghtedar, manuelflores, rockiesrider, michmich, infomech, Andii S., jacek2011, Me2, iwm, mirkogeo, sstinfo, texa, stecho, rifki, openaspace, blombo | |
JoomlaWatch is popular joomla visitor tracking and live stats component. It provides several features such as spam blocking,
goals tracking, charts, nightly email reports, latest visit map, interactive HTML5 traffic flow graph and many other useful functionalities,
which will help you to optimize your site.
Freelance
Projects
Forum
Resources
Here are some of the notes from the JSF training. You can see here some tricks and important remarks.
JSF EL - also in java source, not only in JSP page:
FacesContext fc = FacesContext.getCurrentInstance(); UIViewRoot vr = fc.getViewRoot(); UIOutput vysl = (UIOutput) vr.findComponent("f:vysledek"); ValueBinding b = fc.getApplication().createValueBinding("#{scitackaHandler.vysledek}"); vysl.setValue(vb.getValue(fc));
- scope not supported
x.y <=> x['y']
(expr1)[expr2] | first | Map.get(value2) List.get(value2) value1[value2]
- unary operator
- ternary operator ${x?y:z}
- adding a property to object's attributes instead of ${sessionScope.userName} we can use just ${userName}
JSF EL
requestScope, sessionScope, applicationScope -> Map that containts attributes of objects of page context.
param, header - Map that contains information about param, header.]
param - map of all parameters
paramValues - map of all values of parameter
initParam - list of inicialization parameters of application
facesContext - context of application
Lifecycle of JSF
- RestoreView
- Apply request values
- Process validations
- Update model values
- Invoke application
- Render response
Restore View
-
Apply request values
- data from submittedValue
- component's attribute immediate=true (Cancel button) (overrides validation)
- button overpasses validation phase of the form
- convertors
Invoke application
- invokes bussiness logic
- implicit default listener
- phase listener
Validator
-
|
Add comment
|