-
16 Mar 2007 6:14 AM #1
gridview error: re is not defined
gridview error: re is not defined
hi i'm using 1.0a rev4
when i try to delete a row from grid with this code
i get this error :Code:this.codesDataSource.remove(codesgrid.getSelectionModel().getSelected());
Ext.grid.GridView.stripeRows method's this line
is in line 22684Code:row.className = row.className.replace(re, "");
any idea? am i making a mistake or is this a bug?
-
16 Mar 2007 7:49 AM #2
Do you see the same error when you run with the normal ext-js.all? Maybe there's a diff btwn the 2 files.
Tim Ryan
Read BEFORE posting a question / BEFORE posting a Bug
Use Google to Search - API / Forum
API Doc (4.x | 3.x | 2.x | 1.x) / FAQ / 1.x->2.x Migration Guide / 2.x->3.x Migration Guide
-
16 Mar 2007 9:03 PM #3
When using Alpha 1 Rev 3 I experienced the same error and reported it here:
http://www.yui-ext.com/forum/viewtop...d00dcb824e94c6
But this seems to be fixed in Rev 4. Please make sure that you are using Rev 4 -- in this revision the line
has been changed toCode:row.className = row.className.replace(re, "");
HTHCode:row.className = row.className.replace("x-grid-row-alt", "");
-
17 Mar 2007 12:25 AM #4
oopss.. sory friends. my mistake. i was using rev3. now updated and problem has gone. thank you
Similar Threads
-
GridView bufferRows FF bug?
By ericwaldheim in forum Ext 2.x: Help & DiscussionReplies: 4Last Post: 22 Mar 2007, 8:42 AM -
1.0a3r4 - Ext.MessageBox - cls is not defined
By bloudon in forum Ext 1.x: BugsReplies: 1Last Post: 19 Mar 2007, 5:57 AM -
MessageBox.js-'null' header when msg not defined [a3r2]
By mystix in forum Ext 2.x: Help & DiscussionReplies: 5Last Post: 14 Mar 2007, 12:11 AM -
BorderLayout contained in DIV w/o height defined?
By ann0yanc3 in forum Ext 1.x: Help & DiscussionReplies: 5Last Post: 7 Mar 2007, 8:09 PM -
Problems with animateX not being defined
By Animal in forum Ext 2.x: Help & DiscussionReplies: 6Last Post: 22 Feb 2007, 3:13 AM



Reply With Quote