I'm really stuck.... How do I change method="post" to method="get" and how do I change the action URL of a form? Any help would be really appreciated.
I'm really stuck.... How do I change method="post" to method="get" and how do I change the action URL of a form? Any help would be really appreciated.
why do you need to change the action url ?
I have a search form which uses cgi-data. I have to specify the action url. For example: <form method="GET" action="[my own url]" target="main">
ok, I have added this to the form settings, this should be ready in the next update, when do you need this feature ?
This is great! Preferably as soon as possible, but I understand that it takes some time.
the new update is out, you can now download, install then test the new settings
Thank you very much. I works great. The only thing left now is that I would like the result after submitting the form in an iframe. Is there a way to accomplish that?
Great, did you try to enable the AJAX setting ?
otherwise you need to place the form inside an iframe
I have tried several days to get things working, but I have not succeeded until now. Is there a way to specify the target frame in the form?
I have tried the Ajax setting, this did not help. If I copy the html code of the form in joomla and then specify the target frame, it works. But I cannot seem to get this done from my chronoforms form, which I prefer.
I would like to accomplish something like this: <form method="GET" action="[my own url]" target="main">
I hope anyone can help me!
so you just need a way to set the target attribute ?
what if you add it using Javascript after the page is loaded ?
in JavaScript view:
document.querySelector(".nui.form").setAttribute("target", "main")