Submitted by Team on Thu, 09/02/2012 - 11:54
I will explain here a very useful command for Git called “Git Grep'. This command will search through all your committed files. It will go through your files and finds information from files. It is extremely very fast to search given string through your check-in files.
Below is the list of options you can use with git grep command.
Find all lines matching with word locCarousel
$ git grep locCarousel
Find word with line number
$ git grep -n locCarousel
Submitted by Team on Sat, 31/12/2011 - 15:45
Once you done with all configuration of languages like( installing contrib modules, enable core and contrib module and add more than one langauage) I have difficulty with forntpage. I am not able to get diffeent front page for different language.
To set this I have done following changes in i18n module.
Go to configuration->regional and language → Multilingual settings -> Variables.

Tick the below option
Submitted by Team on Fri, 07/10/2011 - 10:57
Drupal is provide modular system where you can write or use (contrib modules from drupal community) to achieve different kind of functionality for your website. Here I am try to build a search module using of AJAX property provided by Drupal 7.
To get started with this module you need following in your drupal site
Submitted by Team on Fri, 07/10/2011 - 10:43
It is always fun to use AJAX based things in your form as it gives more comfort to user interface. In this blog I will try to help you to create autocomplete textfield in drupal 7. To accomplish this task you don't need any contrib modules. You need to just follow below steps and you are done with autocompelte textfield.