PDA

View Full Version : Undefined error



Chris Stammen
28-Nov-2006, 09:28 AM
Hey,

I'm trying to create an ajax application from scratch. Unfortunately I get
these error messages. The CSS errors are ignored, except the last one in the
list. I just have two forms (as a test-app), but I can't even get this small
thing to work.. :(
Here's the asp code:



<!-- #INCLUDE FILE="VdfAjaxLib/1.0/pagetop.inc.asp" -->
<html>
<head>
<title>Parent Entry Test Page (chris)</title>
<!-- #INCLUDE FILE="inc/head.inc" -->
</head>
<body>
<form action="none" name="form1" autocomplete="off" vdfControlType="form"
vdfControlName="ouder_form" vdfMainTable="ouder"
vdfWebObject="oParentEntry">
<input type="hidden" name="ouder__rowid" value="">
<blockquote class="EntryBlock">
<table class="EntryTable">
<tr>
<td class="Label"> Bla persoon ID </td>
<td class="Data"> <input type="text" name="OUDER__OUDER_ID"> </td>
</tr>
<tr>
<td class="Label"> Bla persoon Naam </td>
<td class="Data"> <input type="text" name="OUDER__NAAM"> </td>
</tr>
</table>
</blockquote>
</form>
</body>
</html>

Harm Wibier
29-Nov-2006, 09:59 AM
Hello Chris,

The problem here is that the names for the input fields are uppercased. The
library works with lowercased names and in the next version these field
names will be case insensitive.

Regards,

--
Harm Wibier
Data Access Europe B.V.
http://www.dataaccess.nl

"Chris Stammen" <Chris@jds.nl> wrote in message
news:2$nz9lvEHHA.2584@dacmail.dataaccess.com...
> Hey,
>
> I'm trying to create an ajax application from scratch. Unfortunately I get
> these error messages. The CSS errors are ignored, except the last one in
> the list. I just have two forms (as a test-app), but I can't even get this
> small thing to work.. :(
> Here's the asp code:
>
>
>
> <!-- #INCLUDE FILE="VdfAjaxLib/1.0/pagetop.inc.asp" -->
> <html>
> <head>
> <title>Parent Entry Test Page (chris)</title>
> <!-- #INCLUDE FILE="inc/head.inc" -->
> </head>
> <body>
> <form action="none" name="form1" autocomplete="off" vdfControlType="form"
> vdfControlName="ouder_form" vdfMainTable="ouder"
> vdfWebObject="oParentEntry">
> <input type="hidden" name="ouder__rowid" value="">
> <blockquote class="EntryBlock">
> <table class="EntryTable">
> <tr>
> <td class="Label"> Bla persoon ID </td>
> <td class="Data"> <input type="text" name="OUDER__OUDER_ID"> </td>
> </tr>
> <tr>
> <td class="Label"> Bla persoon Naam </td>
> <td class="Data"> <input type="text" name="OUDER__NAAM"> </td>
> </tr>
> </table>
> </blockquote>
> </form>
> </body>
> </html>
>
>
>
>
>
>

Chris Stammen
1-Dec-2006, 04:28 AM
Hey Harm!
Thanks for this solution. It worked right away when i lowercased the items!
Great.

Now the following challenge: getting the DDValue options to work ;-) But I
will figure this out myself. Seems that the world of webapp is a bit more
difficult than I thought.

-Chris






"Harm Wibier" <harm.wibier@dataaccess.nl> schreef in bericht
news:oSJ1Hc8EHHA.3272@dacmail.dataaccess.com...
> Hello Chris,
>
> The problem here is that the names for the input fields are uppercased.
> The library works with lowercased names and in the next version these
> field names will be case insensitive.
>
> Regards,
>
> --
> Harm Wibier
> Data Access Europe B.V.
> http://www.dataaccess.nl
>
> "Chris Stammen" <Chris@jds.nl> wrote in message
> news:2$nz9lvEHHA.2584@dacmail.dataaccess.com...
>> Hey,
>>
>> I'm trying to create an ajax application from scratch. Unfortunately I
>> get these error messages. The CSS errors are ignored, except the last one
>> in the list. I just have two forms (as a test-app), but I can't even get
>> this small thing to work.. :(
>> Here's the asp code:
>>
>>
>>
>> <!-- #INCLUDE FILE="VdfAjaxLib/1.0/pagetop.inc.asp" -->
>> <html>
>> <head>
>> <title>Parent Entry Test Page (chris)</title>
>> <!-- #INCLUDE FILE="inc/head.inc" -->
>> </head>
>> <body>
>> <form action="none" name="form1" autocomplete="off"
>> vdfControlType="form" vdfControlName="ouder_form" vdfMainTable="ouder"
>> vdfWebObject="oParentEntry">
>> <input type="hidden" name="ouder__rowid" value="">
>> <blockquote class="EntryBlock">
>> <table class="EntryTable">
>> <tr>
>> <td class="Label"> Bla persoon ID </td>
>> <td class="Data"> <input type="text" name="OUDER__OUDER_ID"> </td>
>> </tr>
>> <tr>
>> <td class="Label"> Bla persoon Naam </td>
>> <td class="Data"> <input type="text" name="OUDER__NAAM"> </td>
>> </tr>
>> </table>
>> </blockquote>
>> </form>
>> </body>
>> </html>
>>
>>
>>
>>
>>
>>
>
>