Back To Start Of Archive
Taken From The Forum: Help & Support for DHTML Menu Version 5+
Forum Topic: Click to view post
Last Updated: Saturday July 14 2012 - 06:07:15
Search form inside a selection?
Poster: Areometer
Dated: Monday September 1 2003 - 6:18:57 BST
How do you insert a search form or mailing list subscription form inside a selection like the way being used by Milonic "Search" selection?
Thank you.
Poster: Maz
Dated: Monday September 1 2003 - 6:44:09 BST
text=<form> etc.... </form>;type=form;
regards
maz
Poster: Maz
Dated: Monday September 1 2003 - 22:08:01 BST
Note using the normal space character & n b s p ; messed it up for me, instead I used itemwidth to allow for text with spaces.
regards
maz
Still having problem w/ form inside the menu...
Poster: Areometer
Dated: Saturday September 20 2003 - 21:24:50 BST
Sorry but I am still experiencing problem and don't know where else to look for help/info.
Let's say the following command works:
aI("text=Info;url=http://www.yahoo.com;status=words;");
If I want to insert a <form>blahblah</form, should I insert after text= or url= or ??
Thank you for helping me.
Edward
Poster: Hergio
Dated: Saturday September 20 2003 - 21:41:10 BST
Here is the menu declaration for the menu on the Milonic home page which contains a form with a textbox input with a submit button. If you have any other questions regarding it, as always, keep them coming.
Code:
with(milonic=new menuname("mm search")){
style = vertStyle;
margin=3;
aI("text=<FORM METHOD=GET ACTION=/search.php name=search><table><tr><td>Search Milonic</td></tr><tr><td><input name=q size=11></td></tr><tr><td><input type=submit value=Search></td></tr></table></form>;type=form;align=center");
}
style = vertStyle;
margin=3;
aI("text=<FORM METHOD=GET ACTION=/search.php name=search><table><tr><td>Search Milonic</td></tr><tr><td><input name=q size=11></td></tr><tr><td><input type=submit value=Search></td></tr></table></form>;type=form;align=center");
}
Re: Still having problem w/ form inside the menu...
Poster: John
Dated: Sunday September 21 2003 - 4:32:04 BST
Areometer wrote:
If I want to insert a <form>blahblah</form, should I insert after text= or url= or ??
There is no required order for the menu parameters. Your <form>, however, is HTML, and needs to follow those rules.