celine
Newbie
Posts: 1
Registered: 2/26/2007
Location: turkey
Member Is Offline
|
| posted on 2/26/2007 at 09:59 AM |
|
|
error: no target control specified
Hi everyone, I integrate an auto complete list box to my programme but i didnt find the fault that i have a popup calendar and take the error on
above. Could you help me about this subject?
This is my auto complete list box code:
<td><span class="style3"> FIND </span></td>
<form action="borc_kaydet.php" method="post">
<td valign="middle" bgcolor="#DFDFFF">
<span id="sonuc"></span>
<form id="form">
<input name="uye" type="text" id="talep" tabindex="15" class="txtbox" style="width:165px;" /> <script>
var uye = new Object();
uye.hedef = "talep.php";
uye.isim = 'uye';
uye.olcu = [500,500];
uye.alan = [
['Isim','isim',1,'100%'],
['Dahili','vergi_dairesi',0,'35']
//['Soyad','soyad',1,'50%']
];
uye.kayit = new Array();
cnTablo('uye');
</script>
</form>
and on the same page the calendar code:
<script language="javascript">
var call_1 = new calendar1(document.forms['Gonder'].elements['icra_tarihi'],'');
call_1.year_scroll = true;
call_1.time_comp = false;
</script>
<script language="javascript">
|
|
|
tigra
Administrator
Posts: 1926
Registered: 6/17/2002
Location: US, CO
Member Is Offline
|
| posted on 2/26/2007 at 05:20 PM |
|
|
in "new calendar1(..)" statement you refer to form with name "Gonder" and its input "icra_tarihi". None of that exists in the HTML fragment you
provided.
|
|
|
|