- 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);
}
}
);
Lure Of Chaos 10.01.2011 16:01 # +1
return classDesc;
}
сингелтон!
tr00_gr1m_doomster 10.01.2011 16:04 # +3
Lure Of Chaos 10.01.2011 16:13 # 0
wmmorgun 10.01.2011 19:39 # +2
guest 10.03.2017 19:06 # 0
telnet 10.01.2011 20:32 # 0
guest 10.02.2017 12:44 # 0