Rajeshorey
01-09-2008, 09:44 AM
hi friends and experts !!!
Thanks for you support you given me for my previous post's:)
here i'm posting another problem hoping the Solution from you !!!!
When i click the VIEW action in the grid i want my ffirst name to
get append on my url (i.e) pass as queryString !!!
but i coudn't able to see any action on the URL Appending !!
my page is been directed to www.openlaszlo.org (http://www.openlaszlo.org) but
in the URL there is no change
thanks a lot in advance
<canvas width="800" height="800" debug="true">
<dataset name="ds">
<phonebook>
<contact firstName="John" lastName="Smith" phone="617-536-7855"
email="jsmith@mail.com"/>
<contact firstName="Lisa" lastName="Jones" phone="415-225-8743"
email="ljones@mail.com"/>
<contact firstName="Mary" lastName="Brown" phone="212-665-5211"
email="mbrown@mail.com"/>
</phonebook>
</dataset>
<grid datapath="ds:/*" name="gridian" sizetoheader="false" height ="150" showhlines="true" y="200" style="mylightstyle" >
<gridcolumn width="95" sortable="false" resizable="false"><b>Action</b>
<view name="fname1" x="0" layout="axis:x; spacing:1">
<text font="Verdana" fontsize="13" fgcolor="blue" x="0"><u>view</u></text>
<datapath xpath="@firstName" replication="lazy" />
<handler name="onclick">
LzBrowser.loadURL("http://www.openlaszlo.org?"+canvas.datasets.firstName.getQueryString());
</handler>
</view>
</gridcolumn>
<gridtext datapath="@firstName" width="150" editable="false"> <b>First Name </b> </gridtext>
<gridtext datapath="@lastName" width="120" editable="false"><b> lastName </b> </gridtext>
<gridtext datapath="@phone" width="105" editable="false"><b> phone </b> </gridtext>
<gridtext datapath="@email" width="126" editable="false"><b> email </b> </gridtext>
</grid>
</canvas>
Thanks for you support you given me for my previous post's:)
here i'm posting another problem hoping the Solution from you !!!!
When i click the VIEW action in the grid i want my ffirst name to
get append on my url (i.e) pass as queryString !!!
but i coudn't able to see any action on the URL Appending !!
my page is been directed to www.openlaszlo.org (http://www.openlaszlo.org) but
in the URL there is no change
thanks a lot in advance
<canvas width="800" height="800" debug="true">
<dataset name="ds">
<phonebook>
<contact firstName="John" lastName="Smith" phone="617-536-7855"
email="jsmith@mail.com"/>
<contact firstName="Lisa" lastName="Jones" phone="415-225-8743"
email="ljones@mail.com"/>
<contact firstName="Mary" lastName="Brown" phone="212-665-5211"
email="mbrown@mail.com"/>
</phonebook>
</dataset>
<grid datapath="ds:/*" name="gridian" sizetoheader="false" height ="150" showhlines="true" y="200" style="mylightstyle" >
<gridcolumn width="95" sortable="false" resizable="false"><b>Action</b>
<view name="fname1" x="0" layout="axis:x; spacing:1">
<text font="Verdana" fontsize="13" fgcolor="blue" x="0"><u>view</u></text>
<datapath xpath="@firstName" replication="lazy" />
<handler name="onclick">
LzBrowser.loadURL("http://www.openlaszlo.org?"+canvas.datasets.firstName.getQueryString());
</handler>
</view>
</gridcolumn>
<gridtext datapath="@firstName" width="150" editable="false"> <b>First Name </b> </gridtext>
<gridtext datapath="@lastName" width="120" editable="false"><b> lastName </b> </gridtext>
<gridtext datapath="@phone" width="105" editable="false"><b> phone </b> </gridtext>
<gridtext datapath="@email" width="126" editable="false"><b> email </b> </gridtext>
</grid>
</canvas>