02 May, 2014
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
April 02, 2014
CIGNEX Datamatics
We are looking for talent to fill the following positions at our Bangalore and Ahmedabad centers.
| ||||||||||||
| ||||||||||||
If your profile matches then send your CV on jignesh.vachhani@cignex.com
| ||||||||||||
19 March, 2014
05 March, 2014
Custom Comparator in Java
March 05, 2014
Java
import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
/**
* @author Jignesh Vachhani
*
*/
10 January, 2014
CI best practices by Manuel de la Peña
January 10, 2014
Liferay
Guys ,
Have you read below articles written by Manuel de la Peña ?
It's really awesome and we must have to follow all the steps which has been given over here for our daily programming life.
Have you read below articles written by Manuel de la Peña ?
It's really awesome and we must have to follow all the steps which has been given over here for our daily programming life.
- Continuous Integration Best practices: #1 Don't check-in on a broken build
- Continuous Integration Best practices: #2 Always run the tests
- Continuous Integration Best practices: #3 Wait for commit tests to pass
- Continuous Integration Best practices: #4 Never go home on a broken build
- Continuous Integration Best practices: #5 Be prepared to revert
- Continuous Integration Best practices: #6 Time-Box fixing before reverting
- Continuous Integration Best practices: #7 Don't Comment out failing tests
07 January, 2014
Google Guava
January 07, 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.
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
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 ?
November 14, 2013
Certification, FAQs, Liferay
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
-
Hi Everyone, you might be aware that whenever you perform any action in liferay , its genrating URL with some parameters. So its necessary ...
-
Hello Friends, We have completed around more than 2 years with www.liferaysolution.com and sharing many useful Liferay solutions and imp...
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...





