Hello -
I have created a POCO class (called User) which I decorated some properties with a custom Editor Template. The custom Editor Template (called WorkflowUsers) simply prints the text "HI". I have a grid set up, which displays all of the Users. It has a button which launches the editor pop-up, allowing you to create a new User. The "Domain" property properly uses the custom Editor which I have specified using the UIHInt, however the Roles property does not even show (no display label nor custom editor) on the popup. I have tried making it a List, making it non-virtual. I am confused.
Note: I am using the Trial version, as my full-version won't be purchased until the end of the week due to my company's billing process.
 
 
                                I have created a POCO class (called User) which I decorated some properties with a custom Editor Template. The custom Editor Template (called WorkflowUsers) simply prints the text "HI". I have a grid set up, which displays all of the Users. It has a button which launches the editor pop-up, allowing you to create a new User. The "Domain" property properly uses the custom Editor which I have specified using the UIHInt, however the Roles property does not even show (no display label nor custom editor) on the popup. I have tried making it a List, making it non-virtual. I am confused.
Note: I am using the Trial version, as my full-version won't be purchased until the end of the week due to my company's billing process.
[Required][DisplayName("Domain")][MaxLength(100)][UIHint("WorkflowRoles")]public string Domain { get; set; }[DisplayName("Roles")][UIHint("WorkflowRoles")][Required]public virtual ICollection<Role> Roles { get; set; }