I am using DayPilot which has two attributes DataValueField and DataIdField. Both are assigned with some values. I can access DataIdField in Code behind using e.Value but cannot access DataValueField.
Are these same things or they are different ?
Please help
Same as my other answer:
As seen on this link the
DataValueFieldis obsolete:In my project I can access the value this way:
Get it in
BeforeEventRender:string id = (string)e.DataItem["id"];