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
16 Sep 2014 13:37

cosmin.cristea

Your scenario can be achieved by creating a template override on the calendar default view and insert a Print button that will trigger a print script.

Please keep in mind that this is an example and not a solution.
The file you have to copy and edit is this one:

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

at line 156 insert the following:
<button onclick="printS();">Print</button>
<script>
function printS()
{
child = window.open(window.location+'&tmpl=component',...
...
Category: RSEvents!Pro
16 Sep 2014 08:36

info2649

Hello how to put a button to print the calendar view?
Category: RSEvents!Pro
15 Sep 2014 10:00

cosmin.cristea

To achieve this scenario, follow these steps:

1. create a hidden field (for this example I will name it hidden);
2. create a calendar field (for this example I will name it cal);
3. head over to Form Properties > PHP Scripts > Scripts called on form process and insert the following:
$_POST['form']['hidden'] = date('d.m.Y',strtotime($_POST['form']['cal'].'+ 7 days'));

Please keep in mind that the above code will create a date in the following format: 9.15.2014

More examples can be found...
Category: RSForm! Pro
12 Sep 2014 12:47

hiellke2

Hello,

I recently made an RSForm, it's an appointment form where people can make appointments with the company.
Anyway I want the user input, like the time, date, name, kind of appointment and the other values in something stored which would be easy for the owner of the actual company to view over.
I was thinking of linking it with Google Calendar.
The thing is... RSForm does not support such thing, and told me if I really want this I would need proper scripting language, which unfortunally I...
Category: RSForm! Pro
10 Sep 2014 05:23

lrenshaw

Here is our development web site. bludovedemo.com/dudley/index.php/calendar

We have paid for the license but do not have the code installed b/c we currently have it on our development server and not the live site.

There are several issues going on:
1. Under the Main navigation, when you go under calendar - the page "Calendar" pulls up correctly with an additional navigation for the Categories on the right. When you click on the right nav the pages do not show the events at the bottom....
Category: RSEvents!Pro
09 Sep 2014 22:21

info2649

Hello with RSEvents I would display in the calendar view thumbnails of the event.

I add these lines com_rsevent spro / calendar / default.php
<?php if (!empty($this->events)) { ?>
 
	<?php foreach($this->events as $eventid) { ?>
	<?php $details = rseventsproHelper::details($eventid->id); ?>
	<?php if (isset($details['event']) && !empty($details['event'])) $event = $details['event']; else continue; ?>
	<?php } ?>
 
<?php } else echo JText::_('COM_RSEVENTSPRO_GLOBAL_NO_EVENTS'); ?>...
...
Category: RSEvents!Pro
08 Sep 2014 13:41

cosmin.cristea

There is no built-in method to achieve this scenario. Although, plugins that handle this sort of job can be found, I cannot recommend any. As a workaround solution, you can use the RSEvents!Pro Calendar module in a template position which covers a larger area (this will force the calendar to stretch on that entire area)
Category: RSEvents!Pro
30 Aug 2014 02:52

office987

In flat calendar mode the calendar box scrolls over the top of the menu bar. Firebug tells me the z-index is set to
element.style {
z-index: 9997;
}

and this will do it every time!

However for the life of me I cannot see where that call is being generated. I cant change the menu bar zindex to a setting higher than that as it causes a host of other problems. Anyone know where this could be coming from?
Joomla 3.3.3. Rocketheme Paradigm latest

Thanks
Category: RSForm! Pro
28 Aug 2014 12:20

aztrid

Thank you for your reply. It didn't work and it took my contact form away. I removed it and the contact form is still missing from its place in the right sidebar. I removed the calendar component from the form and the form did not come back.

I shall build another form now. I take it that the above code is obsolete or my RS!form version is.

Best regards,

Astrid
Category: RSForm! Pro
28 Aug 2014 11:38

cosmin.cristea

Insert this code in the Min Date area of the calendar field's Additional Attributes:
//<code>
return date('m/d/Y', strtotime("7 days"));
//</code>

More information can be found in this article:
http://www.rsjoomla.com/support/documentation/view-article/833-calendar.html
Category: RSForm! Pro
28 Aug 2014 11:23

aztrid

Hi all,

I have this walking tour booking site for tourists on which they can book a walking tour of Copenhagen: newporttours.dk/

In the Contact form, I have this calendar where the inquirer can submit a date on which he wishes to book the tour.

I think the Calendar component has some problems such as

1. There is no option to have past days "greyed out" (unselectable) and
2. I can't set the min date to be e.g. "current date plus 7 days" (we need time to arrange the tour)

Does anyone...
Category: RSForm! Pro
27 Aug 2014 20:07

albertganss

Has anyone done this?
I was trying to add the event category color to the mini calendar dates. It seems easy enough but I am not a php programmer. Anyone wanna take a shot at it?

Alberto
Category: RSEvents!Pro
18 Aug 2014 08:41

cosmin.cristea

I have tried the code provided in your reply (with the given changes to the form ID and field names) and it works as intended. Please make sure you're using the exact form id and names for the calendar fields. Nan is usually used to indicate an error condition for a function that should return a valid number.
Category: RSForm! Pro
17 Aug 2014 13:11

luckgood

Help Me! :ohmy:
I want to calculate the difference in days between two calendar dates. Using this materials, as a result I've got next answer: NAN. What it's mean?
This is my script:
<script type="text/javascript">
function calculateDate(date1, date2){
 
  diffc = date1.getTime() - date2.getTime();
 
  days = Math.round(Math.abs(diffc/(1000*60*60*24)));
 
return days;
}
 
function rsfp_onSelectDate(date, type, args, calendar){
 
argsstr = String(args);
spldate =...

Thanks!
Category: RSForm! Pro
05 Aug 2014 06:24

dsizz

Hi Guys,

I am not sure if this requirement is possible with rsevents pro, actually i have a small calendar module on the home page and is there any way to tweak it so that once the user click on any date and it take to a page with a bigger calendar view.

Thanks
Category: RSEvents!Pro
Displaying 376 - 390 out of 1048 results.