Search Community
- Force.com Discussion Boards
- :
- Salesforce User Discussions
- :
- Product Discussion
- :
- Re: Customizable Search HTML Components
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
- « Previous
- Next »
Re: Customizab le Search HTML Components
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
08-14-2009 10:33 AM
This is a snippet
<form action="https://na6.salesforce.com/00O80000003UzmJ
<span style="font-weight: bold; color: rgb(255, 0, 0);"></span>
Company Type:
<name="pv0">
<select name="typelist">
<option value=""></option>
<option value="Academic">Academic </option>
<option value="Environment">- Environment</option>
</select>
</name="pv0">
<input value="Search" type="submit">
</form>
The resulting string (if I select Academic is):
https://na6.salesforce.com/00O80000003UzmJ?typelis
I want pv0=Academic
Re: Customizab le Search HTML Components
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
08-14-2009 10:47 AM
What you need is:
<form action="https://na6.salesforce.com/00O80000003UzmJ
<span style="font-weight: bold; color: rgb(255, 0, 0);"></span>
Company Type:
<select name="pv0">
<option value=""></option>
<option value="Academic">Academic </option>
<option value="Environment">- Environment</option>
</select>
<input value="Search" type="submit">
</form>
Hope that helps.
-Jonathan
Re: Customizab le Search HTML Components
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
08-14-2009 12:07 PM
- « Previous
- Next »

