Please help me on this, its an urgent for me, i am designing one page consisting of combo and checkboxes. i need to enable(checked) checkbox when i am selecting the combobox value. first time i am able to check all the checkboxes but after two or three operations it is not getting checked properly, i have written code for that but it is not reflecting. i have checked with plain html code also there it is working fine. please try to help my problem. is there any way to form refresh, thease checkboxes are in formpanel.
here i am sending the code also.
var comboForm = new Ext.form.FormPanel({
frame:true,
height:250,
bodyStyle:'padding:5px 5px 0',
cls: 'left-right-buttons',
width: 980,
var param1=comboForm.getForm().getValues(true).replace (/&/g,', ');
alert(param1);
}
}]
});
******************************
my comboForm consisting of one combo box, one button, 5 checkboxes. based on the combo selection checkbox should checked.