This is a migrated thread and some comments may be shown as answers.

multiple assignees

1 Answer 57 Views
TaskBoard
This is a migrated thread and some comments may be shown as answers.
yair torkeltaub
Top achievements
Rank 1
yair torkeltaub asked on 15 Apr 2020, 02:21 PM

Hi,

is there a way to add multiple assignees ?

Thanks,

Yair

1 Answer, 1 is accepted

Sort by
0
Accepted
Dinko | Tech Support Engineer
Telerik team
answered on 20 Apr 2020, 12:04 PM

Hello yair,

Thank you for your interest in our RadTaskBoard control for WPF.

You can consider binding the RadTaskBoard to the building TaskBoardCardModel, as demonstrated in this article: Binding to TaskBoardCardModel. The assigned property of the TaskBoardCardModel is of type object. With this in hand, what you can try is to create a string that contains each name of the user which works on the task. The following code snippet demonstrates what I have in mind.

var list = new List<string>() { "Peter", "Ivan" };
TaskBoardCardModel task = new TaskBoardCardModel()
{
    Assignee = list[0] + ", "+ list[1],
    Title = "RadDocking: Unit Test",
    Description = "Add Unit Tests",
    State = "Not Done",
    CategoryName = "Low",
    IconPath = @"/Project_NameSpace;component/Images/Bella.jpg"
};

Give this approach a try and let me know if it works for you.

Regards,
Dinko
Progress Telerik

Progress is here for your business, like always. Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.
Tags
TaskBoard
Asked by
yair torkeltaub
Top achievements
Rank 1
Answers by
Dinko | Tech Support Engineer
Telerik team
Share this question
or