Welcome Guest, Not a member yet? Register   Sign In
date picker problem
#5

[eluser]cahva[/eluser]
If he wants a datepicker, then do a datepicker Smile As I said its really not too hard to implement. Heres a example view (conroller calendar):

Code:
<html>
<head>
<title>Datepicker</title>
<$cript type="text/javascript" src="&lt;?php echo base_url() ?&gt;assets/js/jquery-1.3.2.min.js"></$cript>
<$cript type="text/javascript" src="&lt;?php echo base_url() ?&gt;assets/js/date.js"></$cript>
<$cript type="text/javascript" src="&lt;?php echo base_url() ?&gt;assets/js/jquery.datePicker-2.1.2.js"></$cript>

&lt;link rel="stylesheet" type="text/css" media="screen" href="&lt;?php echo base_url() ?&gt;assets/css/datePicker.css"&gt;
&lt;link rel="stylesheet" type="text/css" media="screen" href="&lt;?php echo base_url() ?&gt;assets/css/freestyler.css"&gt;
<$cript type="text/javascript">
$(function()
{
    $('.date-pick').datePicker();
});
</$cript>
&lt;/head&gt;
&lt;body&gt;
&lt;?php if ($this->input->post('date1')): ?&gt;
<p>Date sent: &lt;?php echo $this->input->post('date1') ?&gt;</p>
&lt;?php endif; ?&gt;

&lt;?php
$dateconfig = array(
    'name'        => 'date1',
    'id'          => 'date1',
    'class'       => 'date-pick'
);

echo form_open('calendar');
echo form_input($dateconfig);
echo form_submit('submit','Submit');
echo form_close();
?&gt;
&lt;/body&gt;
&lt;/html&gt;

change $cript to script.. The xss cleanup f*cks up javascript code.

See.. no biggie. Just download jquery, date, css and the little calendar icon and off you go Smile


Messages In This Thread
date picker problem - by El Forum - 05-17-2009, 06:14 AM
date picker problem - by El Forum - 05-17-2009, 06:23 AM
date picker problem - by El Forum - 05-17-2009, 09:57 AM
date picker problem - by El Forum - 05-17-2009, 03:21 PM
date picker problem - by El Forum - 05-17-2009, 03:52 PM
date picker problem - by El Forum - 05-17-2009, 04:03 PM
date picker problem - by El Forum - 05-28-2009, 04:56 PM
date picker problem - by El Forum - 06-10-2009, 08:38 AM
date picker problem - by El Forum - 06-10-2009, 03:51 PM
date picker problem - by El Forum - 06-10-2009, 07:38 PM
date picker problem - by El Forum - 08-15-2009, 11:11 PM



Theme © iAndrew 2016 - Forum software by © MyBB