The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
|
#1
|
|||
|
|||
Name Suggest for input box in a custom page
Hi,
I would like to implement the function name suggest into an input box for a mod I am currently working on but I cannot make it work. I found a similar thread but it doesn't provide a possible solution for my concern so I hope someone can help me out. I was already able to grab the code from private message template and make it work in a custom page. The textarea at the top is exactly the same as what can be seen in private messaging. The exact code is Code:
<div class="blockrow"> <label for="pmrecips_ctrl" class="floatcontainer full"> </label> <script type="text/javascript" src="clientscript/vbulletin_ajax_suggest.js?v={vb:raw vboptions.simpleversion}"></script> <div id="usernamelist" class="popupmenu nomouseover noclick nohovermenu"> <textarea class="primary full textbox popupctrl" id="username_ctrl" name="recipients" rows="{vb:if is_browser('mozilla'), 1, 2}" cols="50" tabindex="1">{vb:raw pm.recipients}</textarea> </div> <script type="text/javascript"> <!-- username_sugg = new vB_AJAX_NameSuggest('username_sugg', 'username_ctrl', 'usernamelist'); //--> </script> </div> I applied the following code based on the pm code Code:
<td class='alt1' align='center' width='50%'> <script type="text/javascript" src="clientscript/vbulletin_ajax_suggest.js?v={vb:raw vboptions.simpleversion}"></script> <div id="usernamelist" class="popupmenu nomouseover noclick nohovermenu"> <input type='text' class='bginput' name='to' value='{vb: raw to}' id="username_ctrl"> </div> <script type="text/javascript"> <!-- username_sugg = new vB_AJAX_NameSuggest('username_sugg', 'username_ctrl', 'usernamelist'); //--> </script> </td> </tr> Thanks in advance! |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|