Home
Politica de privacidade
Ferramentas utilizadas
>
Google Apps
Parceria
Serviços
Criar loja virtual
Manutenção de Notebooks
Aplicativos
Suporte
Aplicativo Mobile
Rede Social
O que nós oferecemos
Porque ter um E-comerce
Clientes
Portfólio
Dicas
Porque ter um site?
Qual o melhor gateway pagamento?
Faça um contrato com os Correios para loja virtual
Analista de SEM
Adwords
Perguntas Frequentes
Contato
Suporte Online
Forum
Depoimentos
Blog
Digital News
Mundo E-comerce
App
Cards
Loja Teste
e-store
Dúvidas Frequentes E-comerce
books
Tint
Playlist
tab
Calendar
2b4a7d84b24.png
File Size:
81 kb
File Type:
png
Baixar o arquivo
2b4a7d84b4.png
File Size:
81 kb
File Type:
png
Baixar o arquivo
x
Create Appointment
Patient:
When:
$(document).ready(function() { var calendar = $('#calendar').fullCalendar({ defaultView: 'agendaWeek', editable: true, selectable: true, //header and other values select: function(start, end, allDay) { endtime = $.fullCalendar.formatDate(end,'h:mm tt'); starttime = $.fullCalendar.formatDate(start,'ddd, MMM d, h:mm tt'); var mywhen = starttime + ' - ' + endtime; $('#createEventModal #apptStartTime').val(start); $('#createEventModal #apptEndTime').val(end); $('#createEventModal #apptAllDay').val(allDay); $('#createEventModal #when').text(mywhen); $('#createEventModal').modal('show'); } }); $('#submitButton').on('click', function(e){ // We don't want this to act as a link so cancel the link action e.preventDefault(); doSubmit(); }); function doSubmit(){ $("#createEventModal").modal('hide'); console.log($('#apptStartTime').val()); console.log($('#apptEndTime').val()); console.log($('#apptAllDay').val()); alert("form submitted"); $("#calendar").fullCalendar('renderEvent', { title: $('#patientName').val(), start: new Date($('#apptStartTime').val()), end: new Date($('#apptEndTime').val()), allDay: ($('#apptAllDay').val() == "true"), }, true); } });