Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Phil Winsor on Mar 29, 2008 09:29
open dhtmlx forum
Re Tab right border issue

Hi,
Further to my message of this morning, when I came to edit the compressed version of the js, I found two further edit that will be needed to resolve the missing right border issue in FF. The additional changes I made are as follows:

Line 181
this._conZone.style.width=parseInt(this.width)-(_isFF?2:0)+"px";
changed to
this._conZone.style.width=parseInt(this.width)-(_isFF?3:0)+"px";


Line 277
this._conZone.style.width=parseInt(this.width)-(z+(_isFF?5:3))+"px";
changed to
this._conZone.style.width=parseInt(this.width)-(z+(_isFF?6:3))+"px";

I have tested this in FF2 and after 50 or so attempts have not seen the missing right border again.
I hope this helps
Regards
Phil
Answer posted by Support on Mar 31, 2008 08:12
Thanks for provided info , while your solutions must not cause any serious side effects we will try to resolve source of problem and will include fix of problem in next build of tabbar.
Answer posted by Phil Winsor on Mar 31, 2008 07:29
So far as I could tell, this is caused by a bug in FF and not your own software. My fix was just a simple pragmatic bodge but I'm happy with it