Using nested property for groupIDField value

Hello, I am looking at how to use a nested object property for the <e-schedule-resource> tags GroupIdField value. 

A user has a CustomField object associated to a Technical Domain which is given a name and value.

    public class UserDTO

    {

        public string? Name { get; set; }

        public string? Value { get; set; }


        public CustomFieldDTO TechnicalDomain { get; set; }

    }

    public class CustomFieldDTO

    {

        public string? Name { get; set; } = string.Empty;

        public string? Value { get; set; } = string.Empty;

    }

I would like to use something along the line of GroupIdField="UserDTO.TechnicalDomain.Value" 


doing so like this does not work.

<e-schedule-resource dataSource="@Model.Users" field="Value" title="User" name="Users" textField="Name" idField="Value" groupIDField="TechnicalDomain.Value" allowMultiple="true"></e-schedule-resource>


Is this something that is possible?


1 Reply

SR Swathi Ravi Syncfusion Team October 21, 2024 10:03 AM UTC

Hi Tim Pittman,


Thank you for reaching out to us with your inquiry regarding the use of a nested object property for the GroupIdField value in the Scheduler.

Unfortunately, the current implementation of the Scheduler does not support nested properties for the groupIDField. If you have any further questions or need assistance with alternative approaches, please don't hesitate to let us know. We’re here to help!


Best regards,
Swathi


Loader.
Up arrow icon