search for: datefield

Displaying 9 results from an estimated 9 matches for "datefield".

Did you mean: datafield
2007 Dec 13
1
parsing dates in input file
...n dates, or date times. If I read them in directly: x <- read.csv ("file") the relevant dataframe column is of type string. It would be nice to read in in one go, but not necessary. If I parse the data and then try to overwrite the original column of the data frame: y <- strptime (x$datefield, "%d/%m/%Y") x$datefield <- y I get an error: Error in `$<-.data.frame`(`*tmp*`, "datefield", value = list(sec = c(0, : replacement has 9 rows, data has 16 y has 16 values, as does x$datefield. I'm sure that this is a common problem. Has anyone got any pointer...
2006 Aug 01
6
Newbie: How to use text_field with Java Script
<input type="text" name="date1" id="dateField1" onchange="magicDate(''dateField1'');" onfocus="if (this.className != ''error'') this.select()" /> How could I generate above text filed using ruby? I am not sure how to give the options such as onchange, onfocus, id and so on? coul...
2009 May 15
1
[PATCH server] First round of (largely) cosmetic changes to flexchart.
...import flash.events.Event; import flash.events.MouseEvent; + import flash.geom.Rectangle; import mx.collections.ArrayCollection; import mx.containers.Box; import mx.containers.HBox; @@ -29,9 +31,11 @@ package org.ovirt.charts { import mx.controls.TextInput; import mx.controls.DateField; import mx.controls.Button; + import mx.controls.Label; import mx.controls.PopUpMenuButton; import mx.controls.Text; import mx.events.MenuEvent; + import mx.events.FlexEvent; import mx.formatters.DateFormatter; import org.ovirt.data.*; import org.ovirt.elements.*; @@ -54,10 +...
2007 Sep 17
0
DatePicker in external file?
...script type=\"text/javascript\">"; $o .= "var dpck = new DatePicker({"; $o .= "relative : ''fdatum_faelligkeit'',"; $o .= "language : ''de''"; $o .= "});"; $o .= "</script>"; when i clcik the datefield i get this error Fehler: $(this._id_datepicker) has no properties Quelldatei: http://... : Why? Some ideas? ____________ Virus checked by G DATA AntiVirusKit Version: AVK 17.7838 from 17.09.2007 Virus news: www.antiviruslab.com --~--~---------~--~----~------------~-------~--~----~ You received...
2008 Jun 08
20
how to parse a "dd/mm/yyyy" formatted date string???
Hi, I''m stuck. How do you parse a "dd/mm/yyyy" formatted date string??? I get a date format error. Thanks in advance Greg --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to
2006 Jul 11
5
What are people using for date fields
I''m just curious about what techniques others have successfully used to capture date data on forms as an alternative to the standard date_select. I have to admit I''ve been lazy and only used the date_select as we have very few dates in our system now, but that is about to change. I would like something better. Any thoughts? -- Thanks, Sam -------------- next part
2006 Apr 04
11
Date/Time format and syntax
Hi, Just wondering how I get both the current date and time to display here (so far I can only get the date OR the time): @tblregisteredphone.txtregisterdatetime = Date.today Also, how can I change the format of the date and time from: Tue Apr 04 00:00:00 GMT Daylight Time 2006 to 2006-04-04 12:04:00 ?? I''m sure it''s very simple, I just don''t know how
2006 Jul 31
6
Popup Calendar and DateBoxEngine and Change Made ...
Community, I have been putting off implementing a Date selector for too long. Tonight, I finally put it in. I made the choice to go with the datebox engine. Once I got it installed and working, I realized I didn''t like the way it required you to call it. Example: <% @dateField = model.date %> <%= date_box %> or... <% @dateField1 = model.date %> <%= date_box(@dateField1) which then requires you to trap on these fields during the update/create actions of the controller. This didn''t seem correct. I wanted multiple dates on a page and I want...
2006 Jan 20
13
Calendar date picker for use with rails.
Howdy folks, As I was putting together a rough form for a rails app, I got to thinking how much smoother (in my siytuation) a little calendar widget would be than the default date picker selects. Does anyone know if such a thing exists ? I suspect it would have to be somewhat designed with rails in mind to populate the right kind of post params for convenient use at the controller end.