Hey, i'm quite new to this, but is there a way to search for a cell in your DayPilotScheduler ?
I want to change the background color of certain cells and currently I'm doing this in the BeforeCellRender event where I can check each cell if it matches my requirements. However this doesn't seem very efficient since I have to loop through all the cells when I only want a change a few.
My rows are persons and my columns are dates. If I want to change the cell for person A on the 25th of June, could I access this cell instantly?
Here's an example of what I mean with a gridview: grid.Rows[0].Cells[0].Text = "test";
Thanks in advance!