02 May, 2014

500 free programming ebooks

001. The Design Patterns Java Companion
       James W. Cooper |
       Published in 1998, 218 pages
002. Thinking in Enterprise Java
       Bruce Eckel et. al. | MindView, Inc.
       Published in 2003
003. The Ugly JavaScript Book
       John H. Keyes |
       Published in 2001

29 April, 2014

Maxvalue validation for textarea using AlloyUI - IE

You might be aware that maxlength attribute of textarea doesn't work for IE8 & IE9. If you still want to restrict the length then you can use below code using alloyUI :
A.one(document).delegate(['keypress','change'],function(e){
var maxLength = this.attr('maxlength');
  if(this.val().length > maxLength) {
   this.val(this.val().substring(0, maxLength));
   e.preventDefault();
}
}, '#<portlet:namespace/>description');

02 April, 2014

Current Openings with CIGNEX Datamatics


We are looking for talent to fill the following positions at our Bangalore and Ahmedabad centers.
Positions
Overall Experience 
(in Years)
Relevant ExperienceMinimum (in Years)
   Java Developers / Lead
5-10
J2EE, Struts, spring MVC, EJB, JSF,  
REST Webservices/SOAP UI is essential
   Liferay Developer/ Lead
3-10
Spring MVC, Liferay, JSR, Javascript, Jquery, Components, Spring, CMIS, Web-Services, REST,
    


If your profile matches then send your CV on jignesh.vachhani@cignex.com

19 March, 2014

E-Commerce App by Liferay

It's great to hear from Liferay

05 March, 2014

Custom Comparator in Java

import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;

/**
 * @author Jignesh Vachhani
 *
 */

07 January, 2014

Google Guava

Hi Friends,

I know many of you are familiar with this word but someone is very new just like me.
I search this stuff in google and found that its really amazing and can be useful in our programming life.

So first question will come to your mind that what is "Google Guava" ?
So basically "Google Guava" is nothing but its utilities for working with java collection.

To start work with Gauva, you need to have java 1.6 or higher version installed in your machine.

18 December, 2013

Popup Window using jquery

Hi Folks,

You can use below code for modal popup using jquery :

Floating window using jQuery

Guys,

You can use below code for floating window and can modify as per your requirement :

10 December, 2013

See lucene Index

Hi
I have found out the way where you can actually look at the index files and figure out what are fields in index of Lucene.  

14 November, 2013

When to use Hook ?

Hooks are the most powerful plugin provided by liferay which can be used for customizing Liferay’s core features.
We can definitely use EXT plugin which can be achieved by Hook plugin but for best practices, we should use hook plugin as it is hot-deployable and also easy for upgradation/migration process.

Popular Posts

Featured Post

Liferay 7.3 compatibility matrix

Compatibility Matrix Liferay's general policy is to test Liferay Portal CE against newer major releases of operating systems, open s...