Is there a way to create new controls within an AjaxMethod, and add these to a FormPanel? E.g.
protected void btnNewField_Click(object sender, AjaxEventArgs e){ Anchor opAnchor = new Anchor(); TextArea opTextArea = new TextArea(); opTextArea.FieldLabel = "Testing"; opAnchor.Items.Add(opTextArea); frmDetails.Anchors.Add(opAnchor); cboGroup.Value = 1;}
frmDetails.Anchors.Add(opAnchor); cboGroup.Value = 1;}
{script:"Coolite.Ext.setValues([[cboGroup,1]]);"}
Thanks for the reply vladsch.Any idea when this functionality might be looked at?Thanks again,Dan