Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
How to add extra info in ultraCalendarInfo
posted

How can I add extra info like Location Phone, Location Fax, Location address etc.

Can anyone provide me example of how to use DataKey to manage extra info?

Thanks in advance.

Parents
No Data
Reply
  • 12333
    posted

    Hi,

    Whenever I encounter this scenario (not just with this one class), I usually use this approach:

    • Iterate through the Infragistics collection of data items (Appointments, tasks, etc)
    • locate the corresponding business object from my own data model
    • assign my business object to the Tag property of the Infragistics data item

    Whenever I need to get this additional info, I just cast the Infragistics data item's Tag property into my business object's type and access its properties to do anything I need (populate additional form fields, calculations, etc).

     

Children
No Data