Object med mellemrum?
Hej,Jeg har en datagrid, som jeg prøver at populere med et object. Jeg tilføjer kolonner med denne kode:
this.contacts_dg.addColumn("Firstname");
this.contacts_dg.addColumn("Lastname");
this.contacts_dg.addColumn("BusinessPhone");
this.contacts_dg.addColumn("MobilePhone");
this.contacts_dg.addColumn("HomePhone");
this.contacts_dg.addColumn("Email");
this.contacts_dg.addColumn("Email2");
Og populerer med denne:
for (i=0; i<contactsXML.firstChild.childNodes.length; i++) {
contacts_dg.addItem({Firstname:contactsXML.firstChild.childNodes[i].attributes.firstname, Lastname:contactsXML.firstChild.childNodes[i].attributes.lastname, BusinessPhone:contactsXML.firstChild.childNodes[i].attributes.businessphone, MobilePhone:contactsXML.firstChild.childNodes[i].attributes.mobilephone, HomePhone:contactsXML.firstChild.childNodes[i].attributes.homephone, Email:contactsXML.firstChild.childNodes[i].attributes.email, Email2:contactsXML.firstChild.childNodes[i].attributes.email2, id:contactsXML.firstChild.childNodes[i].attributes.id});
}
Mit problem er således at jeg ikke kan have mellemrum i navnene - f.eks. Business Phone. Hvordan løses dette?
VH
Anders