Jump to content

Search the Community

Showing results for tags 'InputfieldDatetime'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to ProcessWire
    • News & Announcements
    • Showcase
    • Wishlist & Roadmap
  • Community Support
    • Getting Started
    • Tutorials
    • FAQs
    • General Support
    • API & Templates
    • Modules/Plugins
    • Themes and Profiles
    • Multi-Language Support
    • Security
    • Jobs
  • Off Topic
    • Pub
    • Dev Talk

Product Groups

  • Form Builder
  • ProFields
  • ProCache
  • ProMailer
  • Login Register Pro
  • ProDrafts
  • ListerPro
  • ProDevTools
  • Likes
  • Custom Development

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 2 results

  1. <link type='text/css' href='/wire/modules/Inputfield/InputfieldDatetime/InputfieldDatetime.css?v=103' rel='stylesheet' /> <link type='text/css' href='/wire/modules/Inputfield/InputfieldCheckboxes/InputfieldCheckboxes.css?v=100' rel='stylesheet' /> <link type='text/css' href='/wire/templates-admin/styles/inputfields.css' rel='stylesheet' /> <link type='text/css' href='/wire/templates-admin/styles/JqueryUI/JqueryUI.css' rel='stylesheet' /> <link type='text/css' href='/wire/modules/Jquery/JqueryWireTabs/JqueryWireTabs.css?v=103' rel='stylesheet' /> <script type='text/javascript' src='/wire/modules/Jquery/JqueryCore/JqueryCore.js?v=162'></script> <script type='text/javascript' src='/wire/modules/Jquery/JqueryUI/JqueryUI.js?v=180'></script> <script type='text/javascript' src='/wire/modules/Inputfield/InputfieldDatetime/InputfieldDatetime.js?v=103'></script> <script type='text/javascript' src='/wire/modules/Inputfield/InputfieldDatetime/timepicker/jquery-ui-timepicker-addon.js'></script> <?php // create a selctor for Date and time $field = $modules->get("InputfieldDatetime"); $field->label = "Preferred appointment day"; $field->attr("id+name","preferredday"); $field->required = 1; $field->datepicker = 1; // picker on Click $field->dateInputFormat = 'd/m/Y'; $field->timeInputFormat = 'g:ia'; $form->append($field); ?> sorry in advance as I'm on into my second week of learning PHP and PW if my coding is bad to say the least The issue I'm have is that with the above code I'm getting "Millisecond", "Microsecond","Time Zone" and "Now" Button and would like to not show these option. also as a stretch and pushing the limits of asking for help changing the time to be a select box from 7:00AM to 4:00PM broken into half hour blocks I've attached the whole file if it helps. Finally I have to say it may be only a week or 2 but the support and information I have been able to find in these forums has made the process this far an easy ride Tenant Form.php
  2. I am new to process wire. I am using InputfieldForm to create an Input form in my site with some text fields and one Datetime files: // get the conference date and time $field = $modules->get("InputfieldDatetime"); $field->label = "Conference Date"; $field->attr("id+name","date"); $field->required = 1; $field->datapicker = 2; // picker on Click $field->dateInputFormat = 'Y/m/d'; $field->timeInputFormat = 'H:i'; $form->append($field); The form works Ok, but the data picker is never there!!! The Datapicker is working Ok in the admin panel!! I also need some help in how to change the stytes in my InputfieldForm, an example with one or two fields is perfect. Can any one help me Thanks, Vitor Garcia Graveto
×
×
  • Create New...