Closed ghost closed 6 years ago
Hello, @shashical
[createSchedules](https://nhnent.github.io/tui.calendar/latest/Calendar.html#createSchedules)
API set schedules to TUI Calendar.
var cal = new Calendar(/* ... */);
var schedules = [schedule, schedule, ..., ]; // list of schedule
cal.createSchedules(schedules);
[setCalendars](https://nhnent.github.io/tui.calendar/latest/Calendar.html#setCalendars)
API set calendar to TUI Calendar
var cal = new Calendar(/* ... */);
var calendars = [calendar, calendar, ..., ]; // list of calendar
cal.setCalendars(calendars);
Here is useful links for checking out the data format of schedule and calendar.
GitHub Calender has examples shedule data how to remove .
By default data is loading and displaying i want to remove those schedules data.
Can any one please help me.
In example if you remove those default data, remove a function setSchedules()
body in default.js or replace it as what you want.
function setSchedules() {
cal.clear();
generateSchedule(cal.getViewName(), cal.getDateRangeStart(), cal.getDateRangeEnd());
cal.createSchedules(ScheduleList);
refreshScheduleVisibility();
}
From "ScheduleList" can get default data Json, from this i can modify json and can pass to cal.createSchedules(new); But when creating a new schedule how do i get Json like "ScheduleList" json, onclick new schedule this "onNewSchedule()" function will call in default.js .
Can any help me to find out the complete new Schedule JSON.
All sources under examples
folder are just for demonstration.
I think that making your own service code would be better.
But anyway, you can find what you want on examples/schedules.js
and examples/calendars.js
.
@shashical Is this issue resolved?
Thank you for your reply
Am working on this issue and from back-end API call has to create so once it done i will update
On Mon, May 14, 2018 at 11:49 AM, 유동식 notifications@github.com wrote:
@shashical https://github.com/shashical Is this issue resolved?
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/nhnent/tui.calendar/issues/92#issuecomment-388708728, or mute the thread https://github.com/notifications/unsubscribe-auth/AlK-pQqSNJ26zoOZjeHjehTg47DPiInpks5tySINgaJpZM4TyY5t .
@shashical OK, thanks.
@shashical I close this issue, so please leave additional issues if you have any problem. Thank you.
HI,
Javascript Calender its cool and awesome thank you.
Is there AngularJS TUI- Calander ?
I wanted to convert this to AngularJs
On Wed, May 23, 2018 at 3:03 PM, 유동식 notifications@github.com wrote:
@shashical https://github.com/shashical I close this issue, so please leave additional issues if you have any problem. Thank you.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/nhnent/tui.calendar/issues/92#issuecomment-391284252, or mute the thread https://github.com/notifications/unsubscribe-auth/AlK-pWyv7jK5CpUPl0ptTgBeAxq5g0cmks5t1SzUgaJpZM4TyY5t .
@shashical There is no wrapper for angularjs. It would be great for TOAST UI Calendar's users.
Thank you for your reply
On Mon, Jun 18, 2018 at 11:57 AM, 유동식 notifications@github.com wrote:
@shashical https://github.com/shashical There is no wrapper for angularjs. It would be great for TOAST UI Calendar's users.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/nhnent/tui.calendar/issues/92#issuecomment-397954018, or mute the thread https://github.com/notifications/unsubscribe-auth/AlK-pYPDIbGpXQNggwEXLUujahCJWcTHks5t90hSgaJpZM4TyY5t .
Am looking for angularJs Calender .
Is there in toast ui calender?
On Mon, Jun 18, 2018 at 12:05 PM, Shashidhar R shashidhar.r2021@gmail.com wrote:
Thank you for your reply
On Mon, Jun 18, 2018 at 11:57 AM, 유동식 notifications@github.com wrote:
@shashical https://github.com/shashical There is no wrapper for angularjs. It would be great for TOAST UI Calendar's users.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/nhnent/tui.calendar/issues/92#issuecomment-397954018, or mute the thread https://github.com/notifications/unsubscribe-auth/AlK-pYPDIbGpXQNggwEXLUujahCJWcTHks5t90hSgaJpZM4TyY5t .
@shashical Not that I'm aware of. The Dooray! uses tui-calendar and its angularjs wrapper, but that's private service code.
is that angularJS base application?
On Tue, Jun 26, 2018 at 2:08 PM, 유동식 notifications@github.com wrote:
@shashical https://github.com/shashical Not that I'm aware of. The Dooray! https://dooray.com/ uses tui-calendar and its angularjs wrapper, but that's private service code.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/nhnent/tui.calendar/issues/92#issuecomment-400228079, or mute the thread https://github.com/notifications/unsubscribe-auth/AlK-pabzWgGEgYES2CiK8cl2LzKYx-hhks5uAfMLgaJpZM4TyY5t .
Yes, it has been almost 3 years and implemented by AngularJS.
I have downloaded Tui.calender from github. Am trying to find How the calender displaying the data whether its in the of json or what? Can any one help me to find out.