I have a form with a checkbox , text and a textarea with tinymce
behaviour.
I added AjaxFormSubmitBehavior to the checkbox here the code
add(new CheckBox("concur"){ { add(new
AjaxFormSubmitBehavior(ResolveFindingForm.this,"onChange"){ @Override
protected void onSubmit(AjaxRequestTarget target) { Object
s=((FormComponent)getForm().get("adjustedAmt")).getConvertedInput();
s=((FormComponent)getForm().get("actionTakedDesc")).getConvertedInput();
System.out.println(s); } @Override protected void onError(AjaxRequestTarget
target) { } }); } });
on selecting the checkbox, in the onSubmit methood in
AjaxFormSubmitBehavior
I get the user entered value for adjustedAmt which is a text , but the user
entered value for actionTakedDesc which is textarea with tinymce behaviour
is always null.
Please tell me why is it not updating for model with tinymce text ?
I also have ajaxsubmitbutton which works fine , but AjaxFormSubmitBehavior
is not updating value of tinymce textarea .