24.05.2006, 16:14 | #1 |
Участник
|
Помогите разобраться с edit-методом
Я в аксапте новичок помогите плиз...Есть форма на которой два datasoursa... на форме есть grid создаю control IntEdit на grid... проставляю datasourse и datametod
все время скидывает введенное значение и возвращает в 0... привожу datametod edit integer emPercent(boolean _set, AL_TCSExecutives _executives, integer _val) { int tmp; if (mapPercent == Null) { mapPercent = new map (types::integer, types::Integer); } if (_set) { tmp = _val; if (_val) mapPercent.insert(_executives.RecId, tmp); else if (mapPercent.exists(_executives.RecId)) mapPercent.remove(tmp); } return str2int(mapPercent.definitionString()); } |
|