Advanced Search

Search by Keyword
Search by User Name
   

Search Options

Find Posts from
Sort Results by
Jump to Result Number
Search in Categories

Search Results

Searched for: calendar
27 Oct 2008 04:40

glopez

OK, I eat my words. I was thinking of a third party calendar module. Not the actual calendar within the form. I turned it off and the form works perfectly. I turned on Captcha and it seems to work fine with that on.

So, not having a calendar isn't a deal breaker. Since I love this form tool. Purchasing license in the morning.

One comment though. If it can be fixed to work with calendar some day that would be cool!
Category: RSForm!
26 Oct 2008 11:17

rolf.fey

Perfect advice! Since I am not fluent in Javascript I appreciate this support. Works perfect now.
Maybe this could be an option for a date field type.
Then the calendar has no option to jump year by year. If one person has to enter his birthdate, the calender option is not suitable. It should be possible to jump in one year intervalls, not just month intervalls.

Thank you for such a great component.
With regards
Rolf
Category: RSForm!
24 Oct 2008 14:56

octavian

Hello,

Disable the autogenerate layout feature from the Form Layout tab. After that, paste this code at the end of the layout:
<script type="text/javascript">
var mydate=new Date();
var day=mydate.getDate();
var month=mydate.getMonth();
var year=mydate.getYear();
if (year < 1000) year+=1900;
if (day<10) day=\"0\"+day;
month = parseInt(month) + 1;
if (month < 0) month = \"0\"+month;
document.getElementsByName('form[Calendarname]')[0].value...
...
Category: RSForm!
10 Oct 2008 09:13

octavian

Hello,

Thank you for your suggestion, it has been forwarded to the project manager and will be taken into consideration. However, the new RSTickets! revision is already scheduled for next week.
Category: RSTickets!
09 Oct 2008 17:52

peter.s.mayne

YES! that would be perfect!
Category: RSTickets!
18 Sep 2008 15:50

nettemor

Put the following code in the Script tab, on form process:

if(isset($_POST)){
$date = explode('.',$_POST);
$_POST = $date[2] . '-' . $date[1] . '-' . $date[0];
}

where Contactdate is the RSFormsPro calendar field.
This field are set to display dd.mm.yyyy and in the backend it will now be saved as YYYY-mm-dd

It works, and correcte date are saved to MySql :cheer:
Category: RSForm!
18 Sep 2008 07:00

dragonjc

Don't touch to the Submissions Value with mapping. If you change it, you will not have the good information for display data in front end.

Just insert a field into Submission_values
If you add a field to have date with popup calendar, it will be write in text and not in date. So there is no differences for mysql because the format is not register as date, but as texte.<br><br>Post edited by: dragonjc, at: 2008/09/18 07:01
Category: RSForm!
17 Sep 2008 19:52

bernard.lim

Let me see if I can iterate this properly:

1. Table created in MySQL with a field name of Date_submitted with the data-type of DATE. MySQL's DATE datatype format is YYYY-MM-DD.
2. Created a RSForm Pro form with Pop-up calendar field to display as dd-mm-yy (or mm-dd-yy)
3. Created a data mapping in RSForm Pro to the MySQL table.

The problem is the RSForm mapping does not write to MySQL's format of YYYY-MM-DD, so nothing is written to the table.
Category: RSForm!
17 Sep 2008 13:21

dragonjc

Calendar

As the name implies, this is a very customizable calendar used for date/time collection. The properties that this component supports are

* Name: the name of the component. Please remember that this property must a have a non-empty and unique value within a form.
* Caption: the caption associated with this component.
* Required: this property specifies that the current component must have a value, otherwise the form will not be submitted. In other words, the user must submit a date in...
Category: RSForm!
16 Sep 2008 00:44

nettemor

It is dates which are selected from the calendar.
Display format is set to dd.mm.yy and when saving this to the database it gives a crazy date.

Therefor i need to convert the dd.mm.yy date to a format that mysql recognizes, like yyyy-mm-dd.

I have read the knowledge manual, but it does not gives me directions enough to manage this.
Honestly i need someone to give me an example how to do this. That's how we learn when things are new.

I have never used RSForms before, and i find it difficult...
Category: RSForm!
15 Sep 2008 21:03

dragonjc

you don't say wich dat it is. Is it calendar or submission date ?
If it is calendar, you can on script process (see knowledgebase how to do) custom the registering. Or Change it in manage forms.
If it is the submissions table and not submission values, you can't change it.
Category: RSForm!
13 Sep 2008 18:39

sebmik

I'm full agree with this ask. :woohoo:

I have the same needs, calendar and time !

Besides, I think, that for RSJoomla Team it can be just simple \&quot;copy\&quot; such custom field from RS Form to RS Tikets.
Category: RSTickets!
26 Aug 2008 20:33

dragonjc

26 Aug 2008 18:28

kenneth.j.griffin

Newbie here. I have the mapping feature but I am not sure how I can take information submitted on my form's calendar and display it. Any help would be great.

Thanks!
Category: RSForm!
20 Aug 2008 21:35

dolphie.bourque

I would like to be able to add a calendar and a time for call back as a custom field in RS Tickets. Any thoughts how I could make that happen?

I want my users to be able to submit a request and tell us when it is convenent to phone them back.

Thanks in advance,
Joe
Category: RSTickets!
Displaying 961 - 975 out of 1048 results.