Opened 14 years ago
Closed 14 years ago
#2735 closed defect (invalid)
FilteringTable - event.connect - onSelect in Firefox
Reported by: | guest | Owned by: | alex |
---|---|---|---|
Priority: | blocker | Milestone: | |
Component: | Events | Version: | 0.4.2 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
Hi, I have the widget "FilteringTable?" and want to connect an event on it. In IE7 it works fine, but not in Firefox. A bug or whats wrong???
<script> function connectTable() { var w = dojo.widget.byId("table"); dojo.event.connect(w, "onSelect", function(){ alert("clicked"); }); } dojo.addOnLoad(connectTable); </script> <table widgetId="table" dojoType="FilteringTable".......
Change History (2)
comment:1 Changed 14 years ago by
comment:2 Changed 14 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Ok. Problem solved.
In HTML: <table dojoType="FilteringTable?... Correct: <table dojoType="filteringTable...
Javascript: dojo.event.connect(dojo.byId('table'), 'onclick', function() { alert('clicked'); } );