iframe send POST value

Hi, there is a way to send POST parameter with iframe?
Thanks

You can use webix.send

http://docs.webix.com/api___send.html

4th pararameter is a target, it can be name of iframe.

webix.send(“appManagerDetails.aspx”, {ID=5}, “POST”, "myIframe ");
myIframe is the id of my iframe
but doesn’t work

Please be sure that you have both id and name defined

<iframe id='myframe' name='myframe'

iframe doesn’t have the name property

it doesn’t work for me eaven with iframe name

http://webix.com/snippet/926f51cb

it open a new browser window

Hi someone can help me with this problem?
I can’t send data with iframe
here the example : http://webix.com/snippet/8a784205
pls help
thanks

hi,

Check the next snippet, it uses template view to add a custom iframe on the page.

http://webix.com/snippet/570a88b8

Thanks very much