Reply
Contributor
tiopepe
Posts: 4

Re: Customizable Search HTML Components

This is a snippet

 

<form action="https://na6.salesforce.com/00O80000003UzmJ" method="get">

<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?typelist=Academic

 

I want pv0=Academic

 

Contributor
Posts: 6

Re: Customizable Search HTML Components

What you need is:

<form action="https://na6.salesforce.com/00O80000003UzmJ" method="get">

<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

Contributor
tiopepe
Posts: 4

Re: Customizable Search HTML Components

This is perfect, you literally just saved our organization a hundred hours over the course of a year.  Thanks!