Hi,
I want to remove the Additional Category 1 & 2 from the add page, But keep getting error.
"document.forms.add_frm.add_cat1.options is null or not a object"
I am using the Ajax dropdown setup
Does anyone know a work around.
Cheers
Andrew
Hi,
I want to remove the Additional Category 1 & 2 from the add page, But keep getting error.
"document.forms.add_frm.add_cat1.options is null or not a object"
I am using the Ajax dropdown setup
Does anyone know a work around.
Cheers
Andrew
Where are you trying to remove it from by getting that error?
add_form.html remove the following lines
<tr class="tbl_normal">
<td>Additional Category 1</td>
<td><div id="add_cat1_div"><%$add_cat1%></div></td>
</tr>
<tr class="tbl_normal">
<td>Additional Category 2</td>
<td><div id="add_cat2_div"><%$add_cat2%></div></td>
</tr>
Hi,
Tried that and still gives errors.
Check add page
http://www.leedsautos.com/add.php
Not sure what is causing it.
What is this?
<select name="cat" onchange="FetchPricing(); FetchSubCategory(this.options[this.selectedIndex].value, 'cat', 'cat_div'); return false">
That is probably what is causing your issue.
Tried removing the field in the add.php, Still giving errors.
Andrew