sir ,

        I am using Google search API , java , GWT 1.5.3 , JSON .

        I want to get the scroll bar  position .

        Actually I am using HorizontalSplitPanel , because of these i am
having three scroll  bar in a page.

        In mean HorizontalSplitPanel's left Panel having one scroll bar ,
right panel having another one scroll bar and browser having its own scroll
bar .
*
       I want to listen  each of the scroll bar control.

       Especially i want to call a function if scroll reaches reached the
bottom of the page.

*

       This is the coding i am using...



import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.core.client.GWT;
import com.google.gwt.user.client.Window;
import com.google.gwt.user.client.ui.*;

  // some code here
*
    HorizontalSplitPanel hSplitPanel = new HorizontalSplitPanel();*
    HorizontalPanel hPanel1 = new HorizontalPanel();

    hSplitPanel.setSize("1200px","600px");
    hSplitPanel.setSplitPosition("50%");


// some code here

    Label label1 =new Label(text);
    Label label2 =new Label(text);



// some code here


    hSplitPanel.setLeftWidget(label1);
    hSplitPanel.setRightWidget(label2);

// some code here


    RootPanel.get().add(hSplitPanel);

}


       * Help me to find the scorll bar position for these three scroll bar.
*


Waiting for ur reply.


Regards
S.Damodaran.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to