0

I am new to ExtJS and I am working on a project that creates a recurrence when an appointment is scheduled.

After some digging, I got a link for creating recurrence like http://ext.ensible.com/deploy/dev/examples/form/recurrence-widget.html

I have to show this in Ext.TabPanel after some fields. I used the below code in item column, but the recurrence view is not included in the panel.

Code:

var recurField = Ext.createWidget('extensible.recurrencefield', {
    anchor: '90%',
    listeners: {
        'change': function (field, value) {
            Ext.get('recur-value').update(field.getValue() || '(Empty string)');
            Ext.get('recur-desc').update(field.getDescription() || '(Empty string)');
        }
    },
    frequencyWidth: 181
});

I tried including Ext.ensible.ical.RecurrenceField in my project, but I am getting an error name is undefined.

Am I missing something?

Please guide me in the right way...

Rohit Sharma
  • 1,402
  • 9
  • 20
Chaitanya Kumar
  • 212
  • 2
  • 13

0 Answers0