angular-ui / ui-calendar

A complete AngularJS directive for the Arshaw FullCalendar.
http://angular-ui.github.io/ui-calendar/
MIT License
1.49k stars 728 forks source link

How to add resources view in UI calender #391

Closed lovetrivedi closed 7 years ago

lovetrivedi commented 8 years ago

I want to add multiple resources for appointment in a single day. How can I add this like in Full Calender

resources: [
    {
        name: 'Resource 2',
        id: 'resource2'
    },
    {
        name: 'Resource 1',
        id: 'resource1',
        readonly: true 
    }
    ],
    events: [   
    {
        title: 'Long Event',
        start: new Date(y, m, d-5),
        end: new Date(y, m, d-2),
        resource: 'resource1'
    },
    {
        title: 'Meeting',
        start: new Date(y, m, d, 10, 30),
        allDay: false,
        resource: ['resource4','resource2']
    }   
    ],
lovetrivedi commented 7 years ago

Finally I found solution on full calendar documents Thanks

seemsjames commented 5 years ago

Hello Can you give me solution. I haven't found any solutions. Its most requirement for me, so please help me. Thanks