var rowIdx:int = 0;
for each (var _item:SCObject in _resultList.editedItems)
{
// 종복체크
if (_resultList.filterItems({check_delete:false, comp_cd:_item.comp_cd, purc_grp_typ:_item.purc_grp_typ, purc_grp_cd:_item.purc_grp_cd}).length > 1)
{
SCAlert.show("M000039"); // 중복된 코드가 있습니다.
return;
}
// 필수입력체크
for each (var _col:Object in datagrid.columns)
{
if (_col.required)
{
rowIdx = _resultList.getItemIndex(_item) + 1;
if (StringUtil.isNullTrim(_item[_col.dataField]))
{
// 필수항목을 입력하여 주시기 바랍니다.
SCAlert.show("Line : " + rowIdx.toString() + ", " + translator.translate(_col.headerText) + "\n" + translator.translate("M000016"));
return;
}
}
}
}
[한X] Grid 필수 입력 체크 메시지 처리
|
2016.10.07 09:00:13
|
2016.10.19 08:41:41
|
344
|
Aiden
Total of Attached file
0.00 Bytes of 0 files
2016.10.19
2016.10.14
2016.10.13
2016.10.07
2016.10.07
2016.10.07
2016.08.22
2016.06.23
2016.01.08
2014.04.15