raven
07-22-2004, 06:54 AM
Hey guys,
I've been playing around with things, pulling things out of tutorials and all that. Thanks to everyone for all of the help so far. I am missing something here though.
I am pulling a query into xml format:
http://cushingonline.com/laszlo/xmlSql2.php that I am calling on my Laszlo server at home.
test.lzx:
<canvas width="600" height="550" >
<dataset name="dset" src="http://www.cushingonline.com/laszlo/xmlSql2.php" autorequest="true" type="http" />
<view datapath="dset:/phonebook/contact">
<simplelayout axis="y"/>
<view name="contact" visible="false" x="20" height="120">
<text y="10">First Name:</text>
<edittext name="firstName" datapath="@firstName" x="80" y="10"/>
<text y="35">Last Name:</text>
<edittext name="lastname" datapath="@lastName" x="80" y="35"/>
<text y="85">Email:</text>
<edittext name="email" datapath="@email" x="80" y="85"/>
</view>
</view>
</canvas>
All I am getting as the source is what you see above, no values are being filled in. Any ideas why?
I've been playing around with things, pulling things out of tutorials and all that. Thanks to everyone for all of the help so far. I am missing something here though.
I am pulling a query into xml format:
http://cushingonline.com/laszlo/xmlSql2.php that I am calling on my Laszlo server at home.
test.lzx:
<canvas width="600" height="550" >
<dataset name="dset" src="http://www.cushingonline.com/laszlo/xmlSql2.php" autorequest="true" type="http" />
<view datapath="dset:/phonebook/contact">
<simplelayout axis="y"/>
<view name="contact" visible="false" x="20" height="120">
<text y="10">First Name:</text>
<edittext name="firstName" datapath="@firstName" x="80" y="10"/>
<text y="35">Last Name:</text>
<edittext name="lastname" datapath="@lastName" x="80" y="35"/>
<text y="85">Email:</text>
<edittext name="email" datapath="@email" x="80" y="85"/>
</view>
</view>
</canvas>
All I am getting as the source is what you see above, no values are being filled in. Any ideas why?