« Return to Thread: FilteringTable double click

Re: FilteringTable double click

by mengel :: Rate this Message:

Reply to Author | View in Thread


Do you have a code snippet I can see?  Here's what works...

      var row = document.getElementById('aBLTblePlaceHolder').getElementsByTagName('tr');  // Row of table used as Filteringtable
      for (var i=0; i<row.length; i++) {
//         row[i].ondblclick = BuildCodes.rowSelected;    // Does not work, don't knwo why.
         dojo.event.connect(row[i], "ondblclick", BuildCodes, "rowSelected");  // Connect event to each row in table.
      }

Matthew Engel
Senior Programmer/Analyst
State University of New York at Stony Brook
mengel@...



sandeepa <sandeepagarwals@...>
Sent by: dojo-interest-bounces@...

12/20/2006 02:21 AM
Please respond to
dojo-interest@...

To
dojo-interest@...
cc
Subject
Re: [Dojo-interest] FilteringTable double click






Hi Matthew,
 I tried doing the same it doesnt seem to work at all. Is there anything i
am doing wrong?

Thanks
Sandeep
--
View this message in context: http://www.nabble.com/FilteringTable-double-click-tf2829024.html#a7985766
Sent from the Dojo mailing list archive at Nabble.com.

_______________________________________________
Dojo FAQ: http://dojo.jot.com/FAQ
Dojo Book: http://manual.dojotoolkit.org/DojoDotBook
Dojo-interest@...
http://dojotoolkit.org/mailman/listinfo/dojo-interest


_______________________________________________
Dojo FAQ: http://dojo.jot.com/FAQ
Dojo Book: http://manual.dojotoolkit.org/DojoDotBook
Dojo-interest@...
http://dojotoolkit.org/mailman/listinfo/dojo-interest

 « Return to Thread: FilteringTable double click