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
25 Jun 2015 10:30

cosmin.cristea

At the current moment, RSForm!Pro does not have a functionality to add a price for a date selected in a calendar. However, please note that even if you could achieve this, the calendar available for RSForm!Pro allows only one date to be selected ( you can't select dates or a start and an end date ).

How I would do it (note that this would require moderate scripting knowledge):

- Create an empty checkbox group.
- In the frontend when a user clicks on a calendar date, I create a new checkbox...
Category: RSForm! Pro
09 Jun 2015 13:57

bogdan.tataru

You can easily achieve this by going to your admin panel Components > RSForm!Pro > Manage forms > select your form > Properties > CSS&Javascript and adding the following script in the Javascript field:

<script type="text/javascript">
function rsfp_onSelectDate(selectedDate)
{
if((selectedDate == "09.06.2015")||(selectedDate == "04.07.2015"))
{
alert("Disabled!");
return false;
}
else return true;
}
</script>

Note that you will need to change the dates and also change/remove the popup message....
Category: RSForm! Pro
29 May 2015 13:40

RPPEO

I was wonder if RSBooking is a product on the horizon for RSJoomla? After months of trying to find a simple Joomla solution to allow staff to book a board room or training room, and to check for conflicts we are no closer to finding a solution. A booking calendar that used RSForms to create the submission would be worth every penny. :)
The Pro Version could manage a large number of resources - like a hotel, or car rental agency.

What do you think? :)

Cheers.
Niall
Category: General Discussion
28 May 2015 21:29

jeffh

I'm looking for an EXPERT RSEvents developer for a well defined calendar integration project in Joomla 3.

Would like to establish a relationship with a developer that is fluent across all the RS Joomla tools but specifically need help on a calendar project right away.

Prefer native english speaker - but not a deal breaker as long as we can communicate efficiently and clearly about the project.

Thanks!

This e-mail address is being protected from spambots. You need JavaScript enabled to view it
Category: RSEvents!Pro
20 May 2015 12:35

pr91

This is the link
hellastransfers.com/en/test
Where I am wrong???
I have the pro version
Category: RSForm! Pro
14 May 2015 19:27

infosys

Hi There,

I am trying to add a calendar icon using FontAwesome on Calendar Popup Label but it renders it as text, unfortunately. :(

If I may suggest, I think there is no harm to allow HTML on the label unless your guys have a reason for stripping HTML.

Thanks,

Jackson
Category: RSForm! Pro
13 May 2015 11:48

ewa.travel

Hi,
i use nice script from Custom scripting "How to calculate the difference in days between two calendar dates.", my question is, what change in script to calculate days from midnight to midnight.

When I selected dates from 27MAY to 27MAY script showed 0 days.

Thank You for help.
Category: RSForm! Pro
11 May 2015 11:33

bogdan.tataru

In order to achieve this head to Components > RSForm!PRO > Manage Forms > select you form. In the Properties tab click on CSS & Javascript and add the following script in the Javascript field:
<script type="text/javascript">
function myFunction()
{
var selectedDate=document.getElementById('txtcal4_0').value;
var currentDate = new Date();
var month=currentDate.getMonth()+1; 
if(month<10){
month="0"+month;
}
var today = currentDate.getDate() + "." + month + "." +...

This function must be...
Category: RSForm! Pro
10 May 2015 21:55

Isengo

Hey Folks,
I know there is a post about it. But it won´t work for me somehow - www.rsjoomla.com/support/view-article/91...-calendar-dates.html

I changed all the var´s and ID´s as explained. But when I choose the two dates it always gives me back 0.
function calculateDate(date1, date2){
//our custom function with two parameters, each for a selected date
 
  diffc = date1.getTime() - date2.getTime();
  //getTime() function used...
...
Category: RSForm! Pro
09 May 2015 22:41

xcept

Hey guys,

I looked around the whole forum and found:

<script type="text/javascript">
function rsfp_onSelectDate(selectedDate)
{
currentDate = new Date();
month=currentDate.getMonth() + 1;
today = currentDate.getDate() + "." + month + "." + currentDate.getFullYear();
hours = currentDate.getHours();
if(selectedDate == today && hours >= 10)
{
alert('enter your invalidation message here');
return false;
}
return true;
}
</script>


Though it doesn't seem to work!

what i need is that the form...
Category: RSForm! Pro
07 May 2015 08:42

belmondjoe

Hi, Im'm just wondering if I can make a call function using dates from my database and putting it on my calendar fields? Or preventing the dates from my database to be selected in my calendar fields?
Category: RSForm! Pro
04 May 2015 12:13

jabaleva

Issue resolved:

In order to use the "Date modifier" and also be able to select the same date in the second calendar you will require a slight source code modification. Please try going to components\com_rsform\assets\calendar\ and editing the cal.js file by searching for:

var minDate = new Date(theDate.getFullYear(), theDate.getMonth(), theDate.getDate()+1);

and replacing this with

var minDate = new Date(theDate.getFullYear(), theDate.getMonth(), theDate.getDate());
Category: RSForm! Pro
03 May 2015 10:56

jabaleva

I am building a form where staff can input the dates and times they worked in a certain location.

From a Calendar they click on their "Start Date" and from a Dropdown they click on their "Start Time". From a second set of Calendar and Dropdown, they then click on their "End Date" and "End Time". The staff usually work plus or minus eight hours.

I need to restrict the dates in the second calendar, so that the staff can only click on a date beginning from the Start Date. Using the Date Modifier...
Category: RSForm! Pro
26 Apr 2015 09:54

Mail0447

Hi :),

I have a dinner reservation form with a calendar and a dropdown where the user can choose a time.

I need the chosen date to change the available time/value in the dropdown. There are two conditions that need to be available.

1. If the user chose this date, then user can pick a value: 11:30 to 23:00
2. If the user chose this date, then user can pick a value: 17:00 to 22:00

I have tryied some custom javascript by creating an array with the two types of dates using selectDate and it...
Category: RSForm! Pro
22 Apr 2015 08:20

andrea.campane

I already found in the list the localization for that module in italian.
Category: RSEvents!Pro
Displaying 301 - 315 out of 1055 results.