search envelope-o feed check
Home Unanswered Active Tags New Question

Questions Tagged html5

uploading data

Answered: It turns out that the project included an incorrect version of _db.php that initializes the database. A fixed project is now available for download. The employees are stored in the database, in a tab...

Display mysql data

I have two input box and with the help of this two input data i wants to display my mysql data Ex. i have so many employee data in a single table then i wants to display only to those people whose ha...

Demo

Answered: You can see a live demo of the Scheduler here: https://javascript.daypilot.org/demo/

fatal error

Answered: It looks like the 'ODBC' user doesn't have sufficient permissions (to access the database). See also: https://dev.mysql.com/doc/refman/5.7/en/privilege-system.html

resources dynamic data Asp.net

Answered: There is now a new tutorial available that shows how to load resources and events in JSON format from a server-side endpoint created using ASP.NET Core: https://code.daypilot.org/99410/javascript-htm...

change doctors

Answered: You can simply delete the othe doctors in the database ('doctor' table).

DEMO NOTE (ORANGE IN EVENT CALENDAR)

Answered: As noted in the tutorial text, the project download includes a trial version of DayPilot Pro that displays the DEMO label. It's licensed for evaluation purposes only. If you want to use the tutorial ...

Month problem

What if our project has many tasks throughout a couple of months. How can I show the diff tasks on the same chart although they're on different months?

Possibility of an automated reminder

Answered: This needs to be done on the server side. DayPilot focuses on the UI and it doesn't include support for sending emails.

How to stop drag and drop feature on event calendar

Answered: You need to turn the features off one by one: dp.eventMoveHandling = "Disabled"; dp.eventResizeHandling = "Disabled"; dp.timeRangeSelectedHandling = "Disabled"; See also the following tutorial ...

'daypilot-calendar' is not a known element

Answered: Both sources - the article (http://code.daypilot.org/63034/angularjs-event-calendar-open-source) and the forum topic (https://forums.daypilot.org/Topic.aspx/3170/directive-not-working) use AngularJS ...

how to reduce amount

Hi sir, This is valueable to codeing .but small doubt . iask to how to reduce in amount .

Change from sqllite to MS SQL

Answered: Yes, you just need to adjust the $db variable initialization in _db.php: $db = new PDO('sqlite:daypilot.sqlite'); For MySQL you'll need to use something like this: $host = "127.0.0.1"; $port =...

Inverse the axis

Answered: It's possible but you'd have to use the Calendar control switch to the "Resources" mode instead of the Scheduler. You can see a demo here: https://javascript.daypilot.org/demo/calendar/resources.html

delete and/or view

hi, how do i delete/cancel the event on your program? also, how or where can i access or view it's database? 'coz i can't see it in my localhost. i'm using uwamp server. it would be great if you help...

How to display more than one(current) mont ?

I have a sheduler like on screenshot. Unfortunately it shows only reservations(load from database) from current month. I'm able to display more days (eg dp.days = 365;) but there's no cells(only line...

Download option

Is there any option to download the gantt chart report?

problem with overlaps in Server.

Answered: The Scheduler supports client-side overlap detection (https://doc.daypilot.org/scheduler/event-overlapping/). This helps with real-time UI feedback but it's also necessary to implement server-side va...

How do you delete an event?

Answered: The Lite edition doesn't support the built-in "delete" icon like the Pro version: https://doc.daypilot.org/calendar/event-deleting/ The best way would probably be to add a "Delete" button to the moda...

HTML5 Tennis Court Reservation for asp.net webforms

I am looking court booking and came across day-pilot Tennis court booking code sample https://code.daypilot.org/11478/html5-tennis-court-reservation-php-javascript Could you please tell me if you sam...

How to execute using MySQL instead of SQLite?

Answered: The default MySQL port is 3306 so keep that value (unless you have changed the port in your MySQL installation). As far as I can see there are no extra backticks in the SQL commands. Your _db.php sho...

How to limit appointment time only to 30 minutes?

Answered: 1. The default appointment slot duration is set in "backend_create.php" file using $slot_duration variable: $slot_duration = 60; You can change it as needed. 2. Yes, you should change sesion_id t...

Disable Room booking for Past Dates

How can i Disable New reservation pop up opening for Past Dates?

demo

Answered: The easiest way to try it out is to download the project and run it on a local webserver with PHP enabled (e.g. Linux with Apache and PHP). Just copy the project to the web root. If you use MySQL you...

HTML5 Doctor Appointment Scheduling (JavaScript/PHP/MySQL)"

Answered: If you are asking about how to install the project locally to try it out please see this answer: http://forums.daypilot.org/Topic.aspx/3413/demo If you are asking about licensing - you'll need a DayP...

Delete??

Answered: There are several options, please see the following documentation page: https://doc.daypilot.org/scheduler/event-deleting/

Add beds

Answered: At this moment the number of beds is not editable using the sample code. However, it's stored in the database (rooms.capacity field) so it shouldn't be difficult to add an option to edit it.

Edit

Answered: You mus use the EventClickHandling and EventClickJavascript to envoke a ModalDialog, an show the editable data on it. https://doc.daypilot.org/scheduler/event-editing/

SQLite

Answered: Most likely the problem is that the process doesn't have permissions to write to daypilot.sqlite. 1. Trying adding the permissions. 2. Placing the DB file in a publicly accessible location is not a g...

How to change weekly calender

Answered: You can change the visible week using startDate property: <select id="week"> <option value="2016-04-04">Week 14</option> <option value="2016-04-11">Week 15</option> </select> <div id="dp"...
Previous Questions 61-90 of 91 Next