this.useSingleClickComp = (ItsNatHTMLInputCheckBox)compMgr.createItsNatComponentById("useSingleClickId");
useSingleClickComp.addEventListener("click",this);
try
{
ItsNatHTMLLabel comp;
comp = (ItsNatHTMLLabel)compMgr.createItsNatComponentById("labelId1");
comp.setValue("Any Text");
ItsNatHTMLInputText textInput = compMgr.createItsNatHTMLInputText(null,null);
shared(0,comp,textInput);
comp = (ItsNatHTMLLabel)compMgr.createItsNatComponentById("labelId2");
comp.setValue(Boolean.TRUE);
ItsNatHTMLInputCheckBox checkBox = compMgr.createItsNatHTMLInputCheckBox(null,null);
checkBox.getElement().setAttribute("style","width:20px;height:20px;");
shared(1,comp,checkBox);
comp = (ItsNatHTMLLabel)compMgr.createItsNatComponentById("labelId3");
comp.setValue(new Integer(3));
ItsNatHTMLSelectComboBox comboBox = compMgr.createItsNatHTMLSelectComboBox(null,null);
DefaultComboBoxModel model = (DefaultComboBoxModel)comboBox.getComboBoxModel();
for(int i=0; i < 5; i++) model.addElement(new Integer(i));
shared(2,comp,comboBox);
comp = (ItsNatHTMLLabel)compMgr.createItsNatComponentById("labelId4");
comp.setValue(new Date());
ItsNatHTMLInputTextFormatted textInputFormatted = compMgr.createItsNatHTMLInputTextFormatted(null,null);
shared(3,comp,textInputFormatted);
comp = (ItsNatHTMLLabel)compMgr.createItsNatComponentById("labelId5");
comp.setValue("Any \n Text");
ItsNatHTMLTextArea textArea = compMgr.createItsNatHTMLTextArea(null,null);
shared(4,comp,textArea);
}
catch(PropertyVetoException ex)
{