Hello,
My Radtaskboard contains dozens of items. How do I find an item and scroll to it so the user can find it?
I have made this code:
foreach (taskboarddata item in MyRadTaskBoard.Items)
{
if (item.Id == itemidsearch)
{
this.MyRadTaskBoard.SelectedItem = item;
but only selection, the UI does not direct/point to the item.
Thank you for your help.