Re: [web2py] Re: Fullcalendar scheduler - creating, changing and saving data to database

2017-12-24 Thread andfae
I used fullcalendar scheduler. And my customer purchased the license. I'm still looking for a free javascript calendar for my web applications... Bye 2017-12-20 21:06 GMT+01:00 Mr. Jeffery : > Andrea Fae' did you ever get a solution on this post I would like to do > the samething. Let me know. Th

Re: [web2py] Re: Fullcalendar scheduler - creating, changing and saving data to database

2017-12-20 Thread Mr. Jeffery
Andrea Fae' did you ever get a solution on this post I would like to do the samething. Let me know. Thanks On Monday, February 13, 2017 at 11:24:36 AM UTC-5, Andrea Fae' wrote: > > I don't think so. > > > Il giorno lunedì 13 febbraio 2017 15:54:33 UTC+1, mweissen ha scritto: >> >> Is there any S

Re: [web2py] Re: Fullcalendar scheduler - creating, changing and saving data to database

2017-02-14 Thread Richard Vézina
I use to develop a custom python calendar tools with web2py 2-3 years ago... We did pass a lot of the early calendar type issue like isoweek and sunday-to-saturday, I can't say it bugless from this side, but I am confident it always return proper year-month-week-day... I had event table (with attac

Re: [web2py] Re: Fullcalendar scheduler - creating, changing and saving data to database

2017-02-13 Thread Andrea Fae'
I don't think so. Il giorno lunedì 13 febbraio 2017 15:54:33 UTC+1, mweissen ha scritto: > > Is there any Schedular Calendar as a plugin for web2py or with the same > licence as web2py? > > Regards, Martin > > 2017-02-13 15:43 GMT+01:00 Richard Vézina >: > >> Why don't you approach the problem

Re: [web2py] Re: Fullcalendar scheduler - creating, changing and saving data to database

2017-02-13 Thread Andrea Fae'
You are right, but I need a plug in more user friendly, so I want to use Fullcalendar. I'm going ahead...you are expert and for sure you can tell me in very clear way how to pass data from javascript and/or from view to a controller... For example when I resize in Fullcalendar start datetime or

Re: [web2py] Re: Fullcalendar scheduler - creating, changing and saving data to database

2017-02-13 Thread Martin Weissenboeck
Is there any Schedular Calendar as a plugin for web2py or with the same licence as web2py? Regards, Martin 2017-02-13 15:43 GMT+01:00 Richard Vézina : > Why don't you approach the problem the other way?! If you know how to > create a form in web2py, you know how to enter a record (even), you can

Re: [web2py] Re: Fullcalendar scheduler - creating, changing and saving data to database

2017-02-13 Thread Richard Vézina
Why don't you approach the problem the other way?! If you know how to create a form in web2py, you know how to enter a record (even), you can retrieve these records, so... Instead of trying to mess with fullcalendar to create event from it, just create them from web2py... Richard On Mon, Feb 13,

[web2py] Re: Fullcalendar scheduler - creating, changing and saving data to database

2017-02-13 Thread Andrea Fae'
Thank you for who can help me! Il giorno domenica 12 febbraio 2017 11:46:06 UTC+1, Andrea Fae' ha scritto: > > Hello guys, > I'm trying to use Fullcalendar scheduler for my application > > Now I can retrieve resources and event from database. Next step I have to: > - create new events simply click

[web2py] Re: Fullcalendar scheduler

2017-02-09 Thread T.R.Rajkumar
Thank you Richard -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-user

Re: [web2py] Re: Fullcalendar scheduler

2017-02-08 Thread Richard Vézina
Load the page containing the plugin integration repeatedly while looking at memory consumption with system monitor... It is normal that memory growth a bit, but at some point it should stop growing if it not you can suspect a memory leak. If I recall, using the Appliance app integration VM was cras

[web2py] Re: Fullcalendar scheduler

2017-02-08 Thread T.R.Rajkumar
@Richard I do not know about memory leaks. How to detect a memory leak. Thanks for the notice. On Monday, February 6, 2017 at 1:32:00 AM UTC+5:30, Andrea Fae' wrote: > > Someone can help me? Thank you > > Any people can tell me how to load from database table resources to show > using

[web2py] Re: Fullcalendar scheduler

2017-02-07 Thread Andrea Fae'
Thanks but I need RESOURCE because I want to use scheduler add-on... Il giorno martedì 7 febbraio 2017 10:28:05 UTC+1, T.R.Rajkumar ha scritto: > > In controller > -- > def home(): > rows = db(db.cal_events).select() > return dict(rows=rows) > > In view > > >

Re: [web2py] Re: Fullcalendar scheduler

2017-02-07 Thread Richard Vézina
T.R. is the code you show us come from the AppointmentApplicance app? If so, be notice that this way of integration with fullcalendar trigger a memory leaks... I am not sure it still the case of you have recent version of web2py or fullcalendar... But in the past I use to experiment this memory le

[web2py] Re: Fullcalendar scheduler

2017-02-07 Thread T.R.Rajkumar
You have to add this in view. On Monday, February 6, 2017 at 1:32:00 AM UTC+5:30, Andrea Fae' wrote: > > Someone can help me? Thank you > > Any people can tell me how to load from database table resources to show > using this add-on? > > https://fullcalendar.io/scheduler/ > > Any suggestion

[web2py] Re: Fullcalendar scheduler

2017-02-07 Thread T.R.Rajkumar
In controller -- def home(): rows = db(db.cal_events).select() return dict(rows=rows) In view $(document).ready(function() { $('#calendar').fullCalendar({ aspectRatio: 0.7, fixedWeekCount: false, height: "auto",