Jun 20, 2012

RRB Technician Recruitment 2012- 12042 Vacancy ITI Diploma BSc


Government of India, Ministry of Railways has published Centralized Employment Notice No. 04/2012 for the recruitment of Technicians in various trades. Brief information about the eligibility requirements are following:
Education: ITI (Matriculation)/ BSc./ 10+2 (science) etc. depending on the job. Vacancies exist for following qualifications:
Age Limit: 18 to 30 years on 1st July 2012.
Pay Scale:
Technician Grade II/ Signal- Rs. 5200-20200 (GP 2400)
Technician Grade III and all others – Rs. 5200-20200 (GP 1900)
Application Fee:
Technician Grade II/ Signal- Rs. 60
Technician Grade III and other posts- Rs. 40
Official Notification and Complete Details: Complete details of the recruitment process, application format etc. have been published in the official notification which you can download from the following link:
We strictly advise the candidates to understand the application process which is pretty complex. Although, the number of vacancies advertised by the Railway is around 12042 but candidates must keep in mind that they can apply for only certain categories for which they meet the eligibility requirements. There are certain categories of post for which Common Application Form would be accepted. Candidates are advised to choose their priority options carefully. The written exams are scheduled to take place on 16th December 2012.

Note: This post originally taken from site "http://exam-jobs.com/rrb-technician-recruitment-1232901.html"

Jun 10, 2012

Mahadiscom 7000 opening 2012


MUMBAI: The Maharashtra State Electricity Distribution Company Ltd (MSEDCL) has planned to recruit 7,000 assistant electricians/linemen to boost their services across the State by July 25.

Recently, the public power utility had declared that over 75 per cent of Maharashtra is now free from load-shedding. Against this backdrop, MSEDCL has planned to undertake one of the biggest recruitment drives. The selection of the candidates will be made on the marks secured in the Secondary School Certificate (SSC) examinations.

Visit below links for more details & online application form.

Jun 1, 2012

Magento: How to add checkbox field in Admin custom module form and populate the checkbox

How to add Checkbox field in Form:

Open app/code/local/Namespace/CustomModuleName/Block/Adminhtml/ CustomModuleName /Edit/Tab/Form.php and add the below code.


$fieldset->addField('checkbox_name', 'checkbox', array(        
          'name'      => ' checkbox_name ',        
          'onclick' => 'this.value = this.checked ? 1 : 0;',            
          'tabindex' => 1
        ));

How to re-populate the checkbox on Edit page:

Just add the extra line in ablove code like below:


$fieldset->addField('checkbox_name', 'checkbox', array(        
          'name'      => ' checkbox_name ',        
          'onclick' => 'this.value = this.checked ? 1 : 0;',            
          'tabindex' => 1
        ))->setIsChecked($model->getCheckboxName());


                                                                                                                                     Thanks, Done...
=========================================================================