Monday, February 25, 2013

Remove Link to Anchor tag using css

.html :-

<a href="sample.jsp" class="removelink"> Click me </a>

.css :-

.removelink {
      text-decoration: none;
      pointer-events : none;
}

Thursday, February 21, 2013

Jsp Pages are Not Loading in Mobile Browsers,Liferay

In Some Mobile Default browsers JSP Pages will not load Properly then we need to add the following code in the " Portlet.xml " file


   <supports>
          <mime-type>application/vnd.wap.xhtml+xml </mime-type>
</supports>

Liferay DXP JNDI Data Source Cofiguration

 This Blog will help us to learn about the JNDI Data Source Configuration in Liferay DXP. We have tested this with Liferay 7.3 with Tomcat. ...