Show
Ignore:
Timestamp:
08/09/10 10:51:45 (22 months ago)
Author:
mszopinski
Message:

calendar, simple display

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • ssme/trunk/flex/Common/src/com/kh/ssme/entity/GroupEntity.as

    r4036 r4037  
    107107        public override function parseJSONString(json:String, recursive:int = 0):* { 
    108108            var jsonEntity:Object = JSONObject.decode(json); 
    109             return parseJSONObject( jsonEntity ); 
     109            return parseJSONObject( jsonEntity, recursive ); 
    110110        } 
    111111 
     
    114114            var result:String = JSONObject.encode( jsonObject ); 
    115115            return result; 
    116         }      
     116        }  
    117117 
    118118    }