Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.temp.client.foundation.widget.input;

import com.google.gwt.dom.client.*;
import com.google.gwt.user.client.ui.*;
import com.temp.client.foundation.widget.input.support.*;

public class ActiveTextArea extends TextArea implements ActiveTextBoxBase {
    @Override
    protected void onAttach() {
        super.onAttach();
        TextBoxBaseChangeListenableHelper.INSTANCE.attach( this );
    }

    @Override
    protected void onDetach() {
        TextBoxBaseChangeListenableHelper.INSTANCE.detach( this );
        super.onDetach();
    }

    @Override
    public void fireChangeListeners() {
        NativeEvent zEvent = Document.get().createChangeEvent();
        getElement().dispatchEvent( zEvent );
    }
}

Commits for litesoft/trunk/GWT_Sandbox/FormEngine/src/com/temp/client/foundation/widget/input/ActiveTextArea.java

Diff revisions: vs.
Revision Author Commited Message
948 Diff Diff GeorgeS picture GeorgeS Sat 07 Jun, 2014 23:42:39 +0000

Jusefuls Formatter Updated to New Code Format

629 GeorgeS picture GeorgeS Tue 17 Apr, 2012 05:47:55 +0000