This is driving me crazy.

I have a grid object defined as follows:

<grid name="country_grid" sizetoheader="false"
          datapath="success/countries/" clickable="true"  
ondblclick="clicked()"
          onclick="clicked" bgcolor1="${style.basecolor}">

   <method name="clicked">
     Debug.write("Clicked grid ", this.p);
   </method>
                                
   <gridtext width="25" sortable="false" resizable="false"  
editable="false" datapath="position()">
     #
   </gridtext>
   <gridtext width="40" editable="false" datapath="@code">
     Code
   </gridtext>
   <gridtext width="450" editable="false" datapath="@name">
     Name
   </gridtext>
</grid>

When I click or double click any item, the method clicked is never  
invoked.

What I'm trying to do is to popup a window on double-click with more  
details about the selection, but I just can't get it to simply detect  
that I'm double clicking on the item.

What am I doing wrong?

Thanks,
Daniel

_______________________________________________
Laszlo-user mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-user

Reply via email to