Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-11-23 Thread Samuel Sandeep
Hi Seth, Have you implemented the drag functionality for the vertical scrollbar? I know you have more important things to do, but I'm asking out of desperation. On Wednesday, April 11, 2012 1:23:59 AM UTC+5:30, GWTter wrote: Hi Deepak, Sure, I'll let you know once I add that

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-09-17 Thread Deepak Singh
Hi Seth, Is the drag functionality completed for the custom scrollbar ? Thanks Deepak On Wed, Apr 11, 2012 at 2:25 AM, Deepak Singh deepaksingh...@gmail.comwrote: Thanks Seth. I will wait. On Wed, Apr 11, 2012 at 1:23 AM, GWTter seth@gmail.com wrote: Hi Deepak, Sure, I'll let you

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-04-10 Thread GWTter
Hi Deepak, Sure, I'll let you know once I add that functionality. Could be a little while as that currently is not a priority compared to my other items, but it definitely is needed and will be added. -Seth On Wednesday, April 4, 2012 4:30:01 PM UTC-4, Deepak Singh wrote: Ok. So request

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-04-10 Thread Deepak Singh
Thanks Seth. I will wait. On Wed, Apr 11, 2012 at 1:23 AM, GWTter seth@gmail.com wrote: Hi Deepak, Sure, I'll let you know once I add that functionality. Could be a little while as that currently is not a priority compared to my other items, but it definitely is needed and will be

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-04-04 Thread Deepak Singh
Hi Seth, It works. Thanks. But the scrolling happens only through the mouse wheel movement, it does not scroll by dragging the bar in up and down direction. It simply gets dragged like an image. On Wed, Apr 4, 2012 at 8:53 AM, GWTter seth@gmail.com wrote: Hi Deepak, The most you should

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-04-04 Thread GWTter
Hi Deepak, Yes, sorry, I forgot to mention that I hadn't added the drag functionality to the scrollbar since I had put that on hold to focus on some other issues. So you should see the functionality with the scroll wheel only currently. -Seth On Wednesday, April 4, 2012 1:26:44 PM UTC-4,

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-04-04 Thread Deepak Singh
Ok. So request you to update me when you add this drag functionality. OR you can give me some hints/suggestion so that i could also try a bit. Will be waiting for this one. Thanks Deepak On Thu, Apr 5, 2012 at 12:47 AM, GWTter seth@gmail.com wrote: Hi Deepak, Yes, sorry, I forgot to

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-04-03 Thread Deepak Singh
Hi Seth, I added the styles to myVerticalScrollBar. and added the entire page content to MyScrollpanel but still the default scrollbar is there. Its not overridden. On Mon, Apr 2, 2012 at 9:39 PM, GWTter seth@gmail.com wrote: Hi Deepak, Yes, you would need to apply some style to your

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-04-03 Thread GWTter
Hi Deepak, The most you should need to do is the following: AbsolutePanel absPanel = new AbsolutePanel(); for(int i = 0; i 10; i++){ SimplePanel simp = new SimplePanel(); simp.setHeight(100px); simp.setWidth(500px); simp.getElement().getStyle().setBackgroundColor(green);

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-04-02 Thread GWTter
Hi Deepak, This looks good to me. What style are you using for the vertical scrollbar? And thanks for the repost. -Seth On Sunday, April 1, 2012 3:50:12 PM UTC-4, Deepak Singh wrote: Hi Seth, I am posting my code here: myScrollPanel.css @CHARSET ISO-8859-1; .customScrollPanel{ }

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-04-02 Thread Deepak Singh
Nothing more than what i sent you. I have just myScrollPanel.css as mention above. Could you pls guide me with css if i need to apply some css over vertical scrollbar? Thanks in advance Deepak On Mon, Apr 2, 2012 at 8:19 PM, GWTter seth@gmail.com wrote: Hi Deepak, This looks good to

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-04-02 Thread GWTter
Hi Deepak, Yes, you would need to apply some style to your scrollbar so that it at least has width (or height if you were using the horizontal scrollbar). If you look at the MyVerticalScrollBar constructor, the line 'this.setStyleName(verticalScrollBar)' sets the style for the scrollbar. This

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-04-01 Thread GWTter
Hi Deepak, You would have to post your code. Did you make sure to style your vertical scrollbar, create the MyScrollPanel and set its verticalScrollbar with the one you created? In the code I sent you the vertical scrollbar has a width of 10px, you should style the vertical scrollbar to be

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-04-01 Thread Deepak Singh
Hi Seth, I am posting my code here: myScrollPanel.css @CHARSET ISO-8859-1; .customScrollPanel{ } .customScrollPanelCorner{ opacity: 0.0; } MyScrollPanel.java public class MyScrollPanel extends CustomScrollPanel { /** * Extends the CustomScrollPanel Resources interface so that we can add

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-03-31 Thread GWTter
Hi Deepak, This is all that's in the css file as the only important class is the corner that I've set to be transparent: .customScrollPanel{ } .customScrollPanelCorner{ opacity: 0.0; } As for how to use the vertical scroll bar to override the native (or the transparent one

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-03-31 Thread Deepak Singh
Thank you Seth. I would give it a try. Thats already reposted and is in the thread. Thanks Deepak On Sat, Mar 31, 2012 at 10:59 PM, GWTter seth@gmail.com wrote: Hi Deepak, This is all that's in the css file as the only important class is the corner that I've set to be transparent:

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-03-31 Thread Deepak Singh
Hi Seth, I copied your classes and css in my client package. It compiled fine. When i run the applicatio in dev mode, the browser default scrollbar is not overridden. It is same as default. What can i do to override the native one ? On Sun, Apr 1, 2012 at 1:05 AM, Deepak Singh

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-03-30 Thread Thomas Broyer
On Thursday, March 29, 2012 5:43:55 AM UTC+2, GWTter wrote: Hi all, I've used the CustomScrollPanel in order to implement some custom scrollbars, everything was working great until I added DnD (gwt-dnd, not native) functionality to an element in the scrollpanel. The dragging action on

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-03-30 Thread Deepak Singh
Hi Seth, I am also looking for to implement CustomScrollbar. Could you pls post the code that you have implemented ? Thanks Deepak On Fri, Mar 30, 2012 at 3:10 PM, Thomas Broyer t.bro...@gmail.com wrote: On Thursday, March 29, 2012 5:43:55 AM UTC+2, GWTter wrote: Hi all, I've used the

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-03-30 Thread GWTter
Hi Thomas, Thanks so much for all of your suggestions and for explaining the extra DIVs, it makes a lot more sense now. I'll try what you said and let you know. Thanks again. -Seth On Friday, March 30, 2012 5:40:47 AM UTC-4, Thomas Broyer wrote: On Thursday, March 29, 2012 5:43:55 AM

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-03-30 Thread GWTter
Hi Deepak, Sorry, I think I just replied to you personally, can you repost my reply here? Thanks. -Seth -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-03-30 Thread Deepak Singh
Hi Seth, Could you pls post the '/myScrollPanel.css' ? Also, how to use this class for vertical scrollbar of a particular div or overridding browser default scrollbar ? Thanks Deepak On Fri, Mar 30, 2012 at 9:29 PM, GWTter seth@gmail.com wrote: Hi Deepak, Sorry, I think I just replied

CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-03-29 Thread GWTter
Hi all, I've used the CustomScrollPanel in order to implement some custom scrollbars, everything was working great until I added DnD (gwt-dnd, not native) functionality to an element in the scrollpanel. The dragging action on the elements within is extremely laggy. After a good amount of