FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

(Bug?) Tables

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.     Forum Index -> DWT
View previous topic :: View next topic  
Author Message
bobef



Joined: 05 Jun 2005
Posts: 269

PostPosted: Sun Jun 18, 2006 9:15 am    Post subject: (Bug?) Tables Reply with quote

Seems that is a TableItem is inserted at given index, instead of the end of the table, the items after the index are messed up.
Back to top
View user's profile Send private message
JJR



Joined: 22 Feb 2004
Posts: 1104

PostPosted: Mon Jun 19, 2006 9:58 am    Post subject: Reply with quote

Does this mean that you are back, bobef?

If so, welcome. Very Happy
Back to top
View user's profile Send private message
bobef



Joined: 05 Jun 2005
Posts: 269

PostPosted: Tue Jun 20, 2006 12:52 pm    Post subject: Reply with quote

Not exactly back. I did some work and I want to share it... But thanks Smile
Back to top
View user's profile Send private message
bobef



Joined: 05 Jun 2005
Posts: 269

PostPosted: Wed Apr 04, 2007 7:36 am    Post subject: Reply with quote

Here is the fix.
Edit widgets/table.d

at line 720 it says:

Code:
System.arraycopy (items, index, items, index + 1, count - index);
items [index] = item;


chage it to:

Code:
//System.arraycopy (items, index, items, index + 1, count - index);
//items [index] = item;
items=items[0..index]~item~items[index..$];
Back to top
View user's profile Send private message
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.     Forum Index -> DWT All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group