Announcement

Collapse
No announcement yet.

calendar

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • calendar

    Hello everyone,
    how can I display the customer name (if refers to) in the calendar.
    I have already made the following changes.​



    ifThen(entity\isAttributeChanged('name'),
    ifThen(name == "Montage Elektrik", entity\setAttribute('color', '#FF0000'));
    ifThen(name == "Montage WP", entity\setAttribute('color', '#1E90FF'));
    ifThen(name == "Montage Solar", entity\setAttribute('color', '#000000'));
    ifThen(name == "Urlaub", entity\setAttribute('color', '#DAA520'));
    )​

  • #2
    Hello everyone, I solved the problem as follows. Under the Meeting entity, a new field is created called Appointment Type. In Entity Manager Meeting Formula the following formula is deposited.

    ​ifThen(entity\isAttributeChanged('termi nFr'),
    ifThen(terminFr == "Installation Elektrik", entity\setAttribute('color', '#FF0000'));
    ifThen(terminFr == "Installation Heizung", entity\setAttribute('color', '#1E90FF'));
    ifThen(terminFr == "Installation Solar", entity\setAttribute('color', '#000000'));
    ifThen(terminFr == "Urlaub", entity\setAttribute('color', '#DAA520'));
    )​

    Comment

    Working...
    X