my java object below:
public class UserVO {
    private HashMap accessMap = null;
        private String active    = null;
        private String firstName = null;
        private String lastName  = null;
        private String loggedOn  = null;
        
        private String networkId = null;

        
/**
 * @return
 */
public HashMap getAccessMap() {
        return accessMap;
}
..
}

my actionscript object below:

class com.zdus.crm.user.UserVO{
        var firstName:String;
        var lastName:String;
        var networkId:String;
        var loggedOn:String;
        var active:String;
        var accessMap:Object;
        static var registered=Object.registerClass
("com.zdus.crm.user.UserVO",com.zdus.crm.user.UserVO);
}

I have got the hashmap on flex age from remoteobject certainly

i know treat the hashmap as a index array,but i can not do it

thank you! wait for your help online





 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to