Re: Carousel.. how to make..

2016-03-09 Thread jhpark
update source code... click hear for download <https://drive.google.com/file/d/0B-2hv3-UXZ2oQVhfZVB0Z1VaT1U/view?usp=sharing> 2016년 3월 9일 수요일 오후 2시 4분 33초 UTC+9, jhpark 님의 말: > > Thank You. I success.. >>> >> > > if you want my source.. click hear for downl

Re: Carousel.. how to make..

2016-03-08 Thread jhpark
> > Thank You. I success.. >> > if you want my source.. click hear for download -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and

Re: Carousel.. how to make..

2016-03-08 Thread jhpark
> > Thank You. I Success.. >> > Click hear. source download -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send

Carousel.. how to make..

2016-03-07 Thread jhpark
sorry I can't write english. I make moble app and I need carsouel. I use scrollPanel. but. scrollPanel function is poor. I want make owl carsousel.. but so it's to hard... help me. http://owlgraphic.com/owlcarousel/ -- You received this message because you are subscribed to the

how to insert javascript source...

2014-11-26 Thread jhpark
Sorry I can;t wirte English. *1. my java script source.* html body script type=text/javascript src=http://checkout.naver.com/customer/js/checkoutButton.js; charset=UTF-8/script table width=100% border=0 cellspacing=0 cellpadding=0 style=margin-top:3px; tr td width=80nbsp;/td td script

Label text with..

2013-07-08 Thread jhpark
sorry, I can't write Engish. https://lh4.googleusercontent.com/-WeohliScCIk/UdpvKzPSKmI/AbI/JKlYVVPmpX8/s1600/whitespace.PNG Label white space is defferent. problem === label.gettext = 1- white space length = 14px label.gettext = 123 - white space

Re: Label text with..

2013-07-08 Thread jhpark
I solve... how to.. origenal source... HorizentalPanel hPanel = new HorizentalPanel(); hPanel.setWith(100%); hPanel.add(label); solved source... ( hPanel.setWidth(100%) remove ) HorizentalPanel hPanel = new HorizentalPanel(); hPanel.add(label); 2013년 7월 8일 월요일 오후 4시 53분 35초 UTC+9, jhpark

menubar spacing.

2013-07-08 Thread jhpark
sorry, I can't write English. https://lh3.googleusercontent.com/-s-Y3NMCbFn0/UdqW0b0vE6I/AbY/WkINbn_3OV8/s1600/menuspaceing.PNG show image.. menu - space -- menu how to make... -- You received this message because you are subscribed to the

Server-side Code and extend problem..

2011-01-23 Thread jhpark
sorry I can't write English.. -- server side code A_ServiceImpl implements A_NetworkService A_ServiceImle total line : 1200line.. so.. I want.. B_ServiceImple exends A_SerivceImpl. But. rpc call. invoke Error.. [ERROR] [bakew] Invoke Error

checkBoxcell checked - unchecked

2010-12-29 Thread jhpark
I'm sorry.. I can't write English.. I make cellTable.. when button click all checkboxcell is uncheck.. img src=http://postfiles10.naver.net/20101229_73/ isotone_12936152462850Ouse_PNG/ask.png?type=w3 It's very hard... table = new CellTableContact(); final

checkBoxcell checked - unchecked

2010-12-29 Thread jhpark
I'm sorry.. I can't write English.. I make cellTable.. when button click all checkboxcell is uncheck.. img src=http://postfiles10.naver.net/20101229_73/ isotone_12936152462850Ouse_PNG/ask.png?type=w3 It's very hard... source code... table = new CellTableContact(); final

checkBoxcell checked - unchecked

2010-12-29 Thread jhpark
I'm sorry.. I can't write English.. I make cellTable.. when button click all checkboxcell is uncheck.. ↓ image url.. http://postfiles10.naver.net/20101229_73/isotone_12936152462850Ouse_PNG/ask.png?type=w3 It's very hard... source code

how to edit celltable css..

2010-12-28 Thread jhpark
sorry,, I can't write english.. I use cellable and apply callTable.css. 1.. load css.. public interface CellTableResource extends CellTable.Resources { public interface CellTableStyle extends CellTable.Style { }; @Source({CellTable.css}) CellTableStyle

ScrollTable scroll position

2008-11-15 Thread jhpark
sorry I can't write English well.. I have make keyboard shortcut like GMail.. problem../ when I input key ( j key ) scroll down. but I can't.. int scrollPosition = 20; scrollTable.getElement().setScrollTop(scrollPosition); - it not work

Re: DOM.eventPreventDefault(event) is not work IE6 and IE7

2008-11-07 Thread jhpark
thank for your answer. But it' same I don't know how.. On Nov 7, 8:24 pm, Thomas Broyer [EMAIL PROTECTED] wrote: On 7 nov, 08:02, jhpark [EMAIL PROTECTED] wrote:                         public boolean onEventPreview(Event event) {                                 boolean propagate

DOM.eventPreventDefault(event) is not work IE6 and IE7

2008-11-06 Thread jhpark
Sorry I can't write english well... see below source code... F1 key input = showHelp popupPanel.. public class TrackerEntryPoint implements EntryPoint { private EventPreview keyBoardShorcuts; private HorizontalPanel hPanel; public void onModuleLoad() {

Re: DOM.eventPreventDefault(event) is not work IE6 and IE7

2008-11-06 Thread jhpark
I Test below source code case TrackerKeyCode.CODE_F1:   showHelp();    DOM.eventPreventDefault(event); DOM.eventCancelBubble(event, true);   propagate = false; break; } / brower F1 evnet work.. case

Re: How to make ctrl+s keyboard shortcut..

2008-11-02 Thread jhpark
to cut'n'paste) //A On 2 Nov, 08:35, jhpark [EMAIL PROTECTED] wrote: sorry I cant write english well.. I will make keyboard short cut.. public class TrackerEntryPoint implements EventPreview, EntryPoint { private TrackerController trackerController; public void

Re: How to make ctrl+s keyboard shortcut..

2008-11-02 Thread jhpark
-toolkit.googlecode.com/svn/javadoc/1.5/com/google/g...() (also your onEventPreview mthod should return a boolean value, but I guess maybe that's missing in the code below just due to cut'n'paste) //A On 2 Nov, 08:35, jhpark [EMAIL PROTECTED] wrote: sorry I cant write english well.. I

Re: How to make ctrl+s keyboard shortcut..

2008-11-02 Thread jhpark
thank your answer.. thank you.. public boolean onEventPreview(Event evt) { evt.preventDefault(); add this method ( 1 ) int keyCode = DOM.eventGetKeyCode(evt); boolean ctrl = DOM.eventGetCtrlKey(evt); if ( ctrl

How to block brower event ( ctrl +s , alt+ f .. etc )

2008-10-31 Thread jhpark
sorry I can't write english well.. I make editor like google doc. google doc posibble ctrl+s.. but I can't.. I will try javascript.. but it's not work.. SCRIPT LANGUAGE=JavaScript function processKey() { if( (( event.ctrlKey == true || event.altKey == true ) (event.keyCode == 78 ||

setaccesskey not work FireFox

2008-10-30 Thread jhpark
Sorry I can't write english well... GWT ver : 1.5.3 os : window xp FireFox ver : 3.0.3 IE, Chrome work very well.. FF is not work.. thank you. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit

GWITTIR keybinding

2008-10-29 Thread jhpark
sorry I can't wirte english well I have to keyboad binding.. http://code.google.com/p/gwittir/wiki/Keyboarding - sample source code. But I can't use it.. final Button suggest = new Button(Suggest);//create the button KeyBinding keybind = new

Re: SetAccesskey question...

2008-10-26 Thread jhpark
/javadoc/1.5/com/google/g Button will source the keyboard events - the modifiers will be passed to you via a combination of the bits defined by MODIFIER_SHIFT, MODIFIER_CTRL... On Oct 23, 11:52 pm, jhpark [EMAIL PROTECTED] wrote: Sorry I can't write english well... Button btn = new

keyboard short cut problem..

2008-10-23 Thread jhpark
Sorry I can't write english. I want button navigation.. example) button1 button2 button3 button4 key press : ctrl + n - button1 ctrl + n - button2 ctrl + n - button3 ctrl + n - button4 ctrl+p - button3 ctrl+p - button2 ctrl+p - button1 I want like google mail short cut..

SetAccesskey question...

2008-10-23 Thread jhpark
Sorry I can't write english well... Button btn = new Button(); btn.setAccessKey('r'); - only 'r'; alt + r -- button work... but I want 'r' and ' t' alt + r + t == button work.. and alt + ctrl + r == button work... It is posibble ? thank...

TinyMCEEditor keyEvent

2008-10-22 Thread jhpark
Sorry I can't write Eenglish well.. I use TinyMCE eidtor. it's very gd editor.. http://consult.goannatravel.com/blog/2007/11/22/gwt-tinymce-widget/ - convert tinymce.js to gwt wrapper class. question.. public TinyMainEditor() { editorId = tinyMCE- +

What you use WYSIWYG Editor? ( like RichTextArea)

2008-09-04 Thread jhpark
I search editor. So i found TinyMCE.. it is greate... but it is some inconvenience. RichTextArea also. etc.) enter = p tag.. 2byte code problem.. I think GWT support editor poor.. What you use WYSIWYG Editor? --~--~-~--~~~---~--~~ You received this message

Widget.addFocusEvent, or Widget.removeFocusEvnet bug???

2008-09-03 Thread jhpark
sorry, I can't write English well.. this program is addFocusEvent and removeFocusEvent. if toggle button is down - removeFocusEvnet, if toggle button is up - addFocusEvent. but when the focus is on textbox, focusEvnet is work... How can remove event??? (I test