Greetings,

What I have: A custom, dynamic web-based Contact Relationship Manager (CRM).

That has: A dropdown option on the website used to select a certain business class that a company can be classified as. Example: RES = Restaurant

What I want to add: When the end user selects RES from the business industry drop down, I want a new field to "appear" directly below the industry selection box that gives the option to enter more information about that specific business.

Example:
If Business Industry = Restaurant
Then the following options would apear
Then enter restaurant type - Fine Dining
Then enter Square Footage of location - 4500sq
Etc.

I have tried several different things and nothing has worked. Do not ask me to post a copy of what I have tried as I have deleted it out of frustration. I am looking for a new start and a new idea - My ideas apparently SUCK, or at least don't work.

Thanks in advance for any help.

Recommended Answers

All 3 Replies

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<script language="javascript">
function besinesstype(thisform)
{
if(document.formx.besiness.value!='select')
{
document.getElementById('besinesstype').style.display='table-cell';
}
else
{
document.getElementById('besinesstype').style.display='none';
}
}
</script>
</head>

<body>
<form name="formx" action="" method="post" onsubmit="" enctype="multipart/form-data">
<table>
<tr>
<td>
<select name="besiness" onchange="besinesstype(this);">
<option>select</option>
<option>RES</option>
</select>
</td>
</tr>
<tr>
<td>
<div id="besinesstype" style="display:none">
<table>
<tr>
<td>
besinesstype:
</td>
<td>
<input type="type" />
</td>
</tr>
<tr>
<td>
Location
</td>
<td>
<input type="location" />
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</form>
</body>
</html>

try like this.

Keep track of the entire sales process from the initial contact to project ... Once the sales process has been defined, web-based CRM tools allow you to link...

Thanks and hope it can be usedful

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.