After upgrading server to Liferay 6.2, tags start to hang:
Tags autocomplete and tags editing also don't work.
How to fix?
Related
My livewire was worked before but after page refresh. now my pagination, cart, product upload specially livewire any action is not working. i updated my Xampp Php version from 7.3 to 7.4 but still not working. please help me.
I solved the issue myself. it was a HTML command at the top of that page and bottom also when i removed these and finally these pages working fine. i also test it while i add the Command tag back again it was not worked. So this is the solution.
I have tried to create new web app in netbeans , and then i add jsf framework library when i press (CTRL+SPACE) completion work properly for jsf tags ,but when i added primefaces with it when i press(CTRL+SPACE) jsf and primefaces tags in completion didn't appear but work properly .
I'm unable to create the web content in liferay 6.2 assuming some configuration required for the same. Not able to enter any value in textboxes and none of the links working. I'm new to liferay please help me outenter image description here
Thanks atrujillofalcon. Yes, There is some issue with ckeditor which not allowing to display the complete ui page. ckeditor plugin needs to be updated to resolve the issue.
You surely have a Javascript error in your page that block the complete front-end interface funcionalities. You should check the browser console to find this errors.
I have just installed IBM RAD 8.5 for Webpshere and on the contrary to what IBM advertises as JSF 2 Tools support featuring a rich editor comes with RAD 8.5, I could not even find the option of creating an xhtml page from File > New - despite also the fact that I had even added JSF 2.0 to the project facets.
Anyone knows how to activate facelets (xhtml) creation for JSF development in RAD 8.5?
If you have a web JSF2.0 project, you should create New->Web Page and you will get xhtml format selected by default.
File ==> New ==> Webpages ==> Select HTML
Here while entering file name enter myfile.xhtml
finish the process.
I have a simple JSF application, a search form and results table, and a search button that calls a managed bean called SearchHandler.doSearch to populate the results. (I'm using Eclipse and WTP.)
On Tomcat everything works fine, the web page shows, click the button hits a break point in SearchHandler.doSearch, it does the search and populates the table.
However, running on GlassFish, the web page shows, click the button just causes the page to refresh. It never hits the breakpoint in SearchHandler.doSearch and doesn't do the search and populate the table.
Is there something simple I am missing?
rob
Answering my own question ...
It turns out my Eclipse (with WTP) project was configured to work with MyFaces. When I deployed it on Tomcat, everything worked fine.
But GlassFish has its own implementation of JSF in its classpath already (Mojarra). The two JSF implementations were stepping on each other's toes.
I created a new Eclipse "Dynamic Web Project" and specified "Disable Library Configuration" as the "JSF Implementation Library" and now it runs/debugs on GlassFish just fine.
Thanks for reading!