Hello,
I'm trying to implement an ajax solution, but having done SL for 2 years it's hard for me.... maybe I've lost something...
my question is : To correctly have a detail view binded to a datasource I need the data in this form :
Or Having them Plain (No List<Group>) but [DataMember] int idgruppo.... [DataMember] string descrizione?
How ho I remove from showing the similar row in the second case?
If I've
Paolo | 1 | Home
Paolo | 0 | Office
How do I show only one "Paolo" and the detail with Home Office?
Thanks in advance
Paolo
I'm trying to implement an ajax solution, but having done SL for 2 years it's hard for me.... maybe I've lost something...
my question is : To correctly have a detail view binded to a datasource I need the data in this form :
| [DataContract] |
| public class Utente |
| { |
| [DataMember] |
| public string Codice { get; set; } |
| [DataMember] |
| public string Descrizione { get; set; } |
| [DataMember] |
| public string PWD { set; get;} |
| [DataMember] |
| public string Filiale {get;set;} |
| [DataMember] |
| public List<Gruppo> GruppiAppartenenza { get; set; } |
| } |
Or Having them Plain (No List<Group>) but [DataMember] int idgruppo.... [DataMember] string descrizione?
How ho I remove from showing the similar row in the second case?
If I've
Paolo | 1 | Home
Paolo | 0 | Office
How do I show only one "Paolo" and the detail with Home Office?
Thanks in advance
Paolo