colMain.setCellSpacing(new JbsExtent(8));
colStdData.add(createGrdMain());
colMain.add(colStdData);
ExpandableSection expSchool = new ExpandableSection(JbsL10N.getString("JobApplication.education"));
colMain.add(expSchool);
colSchools = new ColEducationEntries();
expSchool.add(colSchools);
expSchool.setExpanded(true);
ExpandableSection expProfessionalExperience = new ExpandableSection(JbsL10N.getString("JobApplication.professionalExperience"));
colMain.add(expProfessionalExperience);
colProfessionalExperience = new ColExperienceEntries();
expProfessionalExperience.add(colProfessionalExperience);
expProfessionalExperience.setExpanded(true);
ExpandableSection expJobs = new ExpandableSection(JbsL10N.getString("JobApplication.career"));
colMain.add(expJobs);
colJobs = new ColJobs();
expJobs.add(colJobs);
expJobs.setExpanded(true);
ExpandableSection expKnowledge = new ExpandableSection(JbsL10N.getString("JobApplication.knowledge"));
colMain.add(expKnowledge);
colKnowledge = new ColKnowledgeEntries();
expKnowledge.add(colKnowledge);
expKnowledge.setExpanded(true);
ExpandableSection expLanguages = new ExpandableSection(JbsL10N.getString("JobApplication.languages"));
colMain.add(expLanguages);
colLanguages = new ColLanguageEntries();
expLanguages.add(colLanguages);
expLanguages.setExpanded(true);
/*
Column colButtons = new Column();
JbsButton btnAdd = new JbsButton("+");