sivamr
Newbie
Posts: 1
Registered: 1/2/2008
Location: Houston,TX
Member Is Offline
|
| posted on 1/2/2008 at 10:06 PM |
|
|
Error : Incomplete "extend" form field decriptor. "l" attribute is missing
I am trying to implment Tigra Form Validator on a page...
I am getting the following error :
"Incomplete "extend" form field decriptor. "l" attribute is missing"
I do not have any field called "extend" on the form. Here is the Tigra code I have on the page..
<script>
// form fields description structure
var a_fields = {
'oBName':{'l':'Obstetrician Name','r':true,'t':'t_ob_name'},
'pediName':{'l':'Pediatrician Name','r':true,'t':'t_pedi_name'}
},
o_config = {
'to_disable' : ['Submit'],
'alert' : 1
}
</script>
Any idea on how to fix this prob?
Thanks in advance!
|
|
|
tigra
Administrator
Posts: 1920
Registered: 6/17/2002
Location: US, CO
Member Is Offline
|
| posted on 1/7/2008 at 02:51 AM |
|
|
That 'extend' thing must be coming from somewhere. Validator will not come up with it by itself. Make sure you're not editing one file while
checking another. Use view->source and then search commands in your browser to find that string in the document.
|
|
|