hi, i have a bind form in new window,
how to modify the value of certain fields ?
at event show the form I try with $$(field) .setValue ( newValue ) but not work
Why?
Try to use the setCursor method before showing the window. Here’s a snippet:
$$(“frmEdit”).attachEvent(“onShow”,function(){
var logo = $$(‘formEditOwner’).getValues().logo;
})
Can i modify attribute “template”
thanks!