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
15 Mar 2016 17:47

hotspots24

Hello guys,

I have one problem with the Date and Time Picker. In the old calender input I have got a Date Modifier - in the new one not.

I have 2 calender in one form (like arrival an departure). I would like selected date (from arrival) becomes min date (plus 1 day) in calendar b (departure), if I get the popup calendar in departure field. Is this possible?

Example:
Arrival input popup selected 12th March 2016
Depature input popup calender show me min date 13th March 2016

Could somebody help me to solve this problem.

Thx.
Category: RSForm! Pro
10 Mar 2016 13:21

alexp

Each input has an unique id assigned to it. If you check out the page source code (or use an inspector tool such as Firebug) you will be able to see it. You can then use the form's CSS/Javascript area, CSS section to hide it. Example:
#field_id_here{
display:none;
}
Category: RSForm! Pro
09 Mar 2016 13:14

cristian.rossato

HI,
1) is it possible to hide the field over the calendar (see picture)? How?
2) Can I keep the month fix?
3) Can I change the calendar template?
4) Is there system to show a time field?


Thanks.
Category: RSForm! Pro
09 Mar 2016 12:56

fanfouet74

Hi RS Team,

I'd like know if it possible to have the calendar with event show in an article???

Like that...



Many thanks in advance,

Kind regards,

Joomla 3.4.8
Category: RSEvents!Pro
28 Feb 2016 16:04

ellen.rothwax

I have over 40 forms that use the calendar field. The end date in the attributes was 2014, I need it to update to stay current for upcoming years. Is there a way to do this globally for all forms or is my only solution to edit each form and put in a future year?
Category: RSForm! Pro
26 Feb 2016 18:37

andrea74

Any suggestion?
The code to use is <i class="uk-icon-calendar"></i> but I can't understand how to use in RS Form Pro.
Category: RSForm! Pro
22 Feb 2016 09:59

alexp

We did test the calendar functionality and it seems fine in responsive environments. Perhaps this is generated by your template related CSS definitions.

PS: Your HTML code does not seem to be correct. "type" attribute is specific to input elements, not span.
Category: RSForm! Pro
18 Feb 2016 12:36

jan007

I need to block Sundays in the Date & Time picker (new field since version 1.51.0). Is this possible?

The Java script below, which I use for the calender, is not working...

<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('Sorry, we are closed on Sunday...');
} else {
return true;
}
}
</script>
Category: RSForm! Pro
16 Feb 2016 21:43

ianpics

Hi I am just creating a new website and want to have a similar layout to my previous version of rsevent pro www.expix.co.uk/index.php/extreme-action...orts-events-listings As you can see the events are grouped by month with a divider. I only did this just after Christmas but I now cannot find the order function in the settings.
Am I going blind or has the latest update removed the function? I can see the code in the css but no way to activate it
here is...
Category: RSEvents!Pro
16 Feb 2016 21:02

w2kd

Interesting it seem only on a ANdroid the text was replace not on desktop or iphone but the code was there on all devices.
I found the culprit it was a plugin xcalendar in the system folder
Category: RSFirewall!
15 Feb 2016 18:17

billing63

I'm using 1.9.11, line 156 doesn't seem like the correct line anymore, what's the new line number? Maybe I should back up and ask if this is the best way to add a print calendar button?
Category: RSEvents!Pro
02 Feb 2016 17:37

EnjoyRC

Exactly what I was looking for. Thank you SO much!
Category: RSEvents!Pro
02 Feb 2016 14:37

admin038

Hi folks,

I have RSEvents Pro and I really need to try and make a layout similar to this: www.edinburghprintmakers.co.uk/whats-on

I am very experienced with HTML/CSS but I see no way of changing the settings to provide a monthly calendar like the one in the link.

I want to be able to click through each month and then see a list of events for that month.

Any help would be much appreciated!
Category: RSEvents!Pro
02 Feb 2016 14:32

adrianp

Hello,

You can try similar steps:

- perform a template override.

- the file in question is located under this path:

\components\com_rseventspro\views\calendar\tmpl\default.php

- open the duplicate used for template overrides and search for (around line 163):
<td class="<?php echo $day->class; ?>">

- you can replace the above line with:
<?php
	if($unixdate->format('m-d-Y') == date('m-d-Y')){
		$todayStyle = 'style="border: 2px solid red;"';
	}else{
		$todayStyle = '';
	}
?>
		<td...
...
Category: RSEvents!Pro
02 Feb 2016 13:55

EnjoyRC

I'd like to indicate the current day in the full calendar view. Is it possible to shade the whole day square, or some other indicator?
Category: RSEvents!Pro
Displaying 226 - 240 out of 1048 results.