- 01
 - 02
 - 03
 - 04
 - 05
 - 06
 - 07
 - 08
 - 09
 - 10
 - 11
 - 12
 - 13
 - 14
 - 15
 - 16
 - 17
 - 18
 - 19
 - 20
 - 21
 - 22
 - 23
 - 24
 - 25
 - 26
 - 27
 - 28
 - 29
 - 30
 - 31
 - 32
 - 33
 - 34
 - 35
 - 36
 - 37
 - 38
 - 39
 - 40
 - 41
 - 42
 
                        // create singelton object, see below 
function singelton(classDesc) {
    return classDesc;
}
var LetterTypeAction = singelton(
    {
        selectLetterType : function(controlId, index) {
           letterTypeManager.selectLetterType(controlId, index);
        },
        addLetterType : function() {
            letterTypeManager.addLetterType();
        },
        saveLetterType : function() {
            var tempLetterType = new LetterTypeDef();
            tempLetterType.setId(currentLetterType.getId());
            tempLetterType.setAbbreviation(TextUtils.trim(ControlUtils.getValueById(letterTypeAbbrId)));
            tempLetterType.setDescription(TextUtils.trim(ControlUtils.getValueById(letterTypeDescrId)));            
            letterTypeManager.saveLetterType(tempLetterType);
        },
        changeLetterType : function() {
            letterTypeManager.changeLetterType();            
        },
        deleteLetterType : function() {
            letterTypeManager.deleteLetterType(currentLetterType);
        },
        cancelLetterType : function() {
            letterTypeManager.cancelLetterType();
        },
        sortLetterType : function(columnId) {
            letterTypeManager.sortLetterType(columnId);            
        }
    }
);