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
06 Aug 2015 13:38

adrianp

Hello,

Your code checks for two days of the week (7 actually doesn't exist as the counting starts from 0).

Replace:
if (d.getDay() == 0 || d.getDay() == 7) {

With:
if (d.getDay() == 0) {
Category: RSForm! Pro
05 Aug 2015 21:23

sam.samiei

Hi,
How can i disable selection Sundays in calendar?

is the code below correct?

<script type="text/javascript">
function rsfp_onSelectDate(date, type, args, calendar)
{
var dates = args[0];
var date = dates[0];
var year = date[0], month = date[1], day = date[2];

var d = new Date(year, month-1, day);
if (d.getDay() == 0 || d.getDay() == 7) {
alert('Please note that we are closed on Sundays');
return false;
} else {
return true;
}
}
</script>

thanks
Category: RSForm! Pro
01 Aug 2015 18:58

ankitcool90

How to add Popup image instead of Popup calendar in RSForm Pro!!

Go to ...\administrator\components\com_rsform\helpers\rsform.php

Make changes in line 3026

Replace the old code but make a copy of it in note pad just if you need to change it to normal again.


Replace it with the code present below --- (note: img src="images\calendar2.png" this is the code i entered before the input id for my image) you need to change it to your image path.)

$out .= '<img src="images\calendar2.png" input...
Category: RSForm! Pro
08 Jul 2015 08:10

duanelbryan

It would be great if it could feature 15 minute intervals also so a time sheet logging form can be created.

Is there any option of a time sheet logging form already created?

Thanks
Category: RSForm! Pro
06 Jul 2015 11:40

octavian

Happy to let you know that we're working on a new version of RSForm! Pro that contains this exact calendar :)
Category: RSForm! Pro
04 Jul 2015 02:34

jcdonis

Any way you guys could implement a time element to the existing calendar form field? More or less like what Fox Contact has on their calendar field? See screenshot.



This would be very beneficial for a simple contact form for appointment requests.

Thanks!
Category: RSForm! Pro
30 Jun 2015 07:48

cosmin.cristea

try changing the color with the following declaration

.rsepro-calendar .has-events ul a{
color:red
}

let me know if it works!
Category: RSEvents!Pro
29 Jun 2015 20:07

dickstanley

Any idea how to change the font colour in the Calender?
I guess it has to be done in the template CSS?

Bit of a novice at this so excuse the basic question

Cheers
Category: RSEvents!Pro
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
Displaying 286 - 300 out of 1048 results.