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

Scrolling to the bottom of a text box

 
Post new topic   Reply to topic     Forum Index -> DFL
View previous topic :: View next topic  
Author Message
jicman



Joined: 22 Dec 2004
Posts: 298
Location: Rochester, NY

PostPosted: Fri Sep 21, 2007 1:07 pm    Post subject: Scrolling to the bottom of a text box Reply with quote

Greetings!

Just like the scrolling to the bottom of the listview with this code
Code:

     if(lv.items.length)
       lv.ensureVisible(lv.items.length - 1);


is there such a function for a textbox? I tried txtNotes.scrollToCaret(), but it probably is not what I want. Smile

Any help would be greatly appreciated.

thanks

jic
Back to top
View user's profile Send private message
Chris Miller



Joined: 27 Mar 2004
Posts: 514
Location: The Internet

PostPosted: Sat Sep 22, 2007 1:41 pm    Post subject: Re: Scrolling to the bottom of a text box Reply with quote

What I do is set the selection to the last character or the last line (the last character can be undesired if word wrapping is off). You will also want to ensure the hideSelection = false.

Some keywords for setting the selection are: selectionStart, selectionLength, select.

It is demonstrated in the DFL-IRC code.
Back to top
View user's profile Send private message
jicman



Joined: 22 Dec 2004
Posts: 298
Location: Rochester, NY

PostPosted: Sun Sep 23, 2007 11:11 pm    Post subject: Reply with quote

I did get it to work with your suggestion, but this one works better:
Code:
    txtNotes.focus();
    txtNotes.appendText(" ");


So, this one works for me.

thanks.

jic
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic     Forum Index -> DFL 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