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: menu
09 Jul 2013 01:03

kklausen

Thank u very much, that works :)
Category: RSForm! Pro
08 Jul 2013 03:30

anthony.burge

I have a dropdown menu similar to the one below.

|Please select the number of pets you have.
0| You own no pets
1| You own one pet

When I set the validation type to required, I find that if the user selects the option '0| You have no pets'
the field will not validate. Is it possible to have a field validate when the option value is equal to 0 and the field is set to required? If yes, how?

Ps. I've tried using 'A| You own no pets' and that worked, but I had to change the value prior to...
Category: RSForm! Pro
04 Jul 2013 10:57

adrianp

Hello,

You can try using the following script within the dropdown's default value area (along with the code tags):
//<code>
$db =& JFactory::getDBO();
$db->setQuery("SELECT `name`,`email` FROM #__users LEFT JOIN #__user_usergroup_map ON #__users.id=#__user_usergroup_map.user_id WHERE #__user_usergroup_map.group_id=6");
$results = $db->loadObjectList();
$items[] = "|Please Select";
foreach ($results as $res){
	$value = $res->email;
	$label = $res->name;
	$items[] = $value.'|'.$label;
}...
...
Category: RSForm! Pro
03 Jul 2013 20:05

kklausen

Would it be possible to use a joomla user group as the values of a drop down field ?

My groups in joomla is automated depending on the members ship in my ldap server, so any ldap group member of Manager is auto added to joomla group manager.

Now I would to take that group, Manager, and add that as a drop down menu as I will be sending e-mails to recipients listed in a drop-down field.

This is what I would use a base, a place for volunteers to select the manager in a form and the email goes to...
Category: RSForm! Pro
02 Jul 2013 15:55

oorzaak

Well I doubt if I should give full code of my solution as it involves (a) quite some sql tweaking and (b) some hard coded search strings that are specific for my site. I can give you a hint though:

The RS Joomla support guys helped me to find the location of the details() function, which loads all event data based on a list of event ids. I did a lot of table joining in order to get from the event id to the desired menu id. And in this process I had to throw in some hard coded search strings....
Category: RSEvents!Pro
02 Jul 2013 09:53

oorzaak

Hi,

I hop e you can help me think up a solution for this:

In RSEvents Pro I made categories corresponding to a number of artists. Each event on the site will get categorized with only one category (a content based decision).

Each artist has their own page / menu item on the site. Here we have a main article and a few modules showing news articles and also an upcoming events modules for RSEvents Pro. Each artist's upcoming events module shows only their own events and the default item id is...
Category: RSEvents!Pro
01 Jul 2013 12:43

silviup

Unfortunately, no, only the 'Categories' menu item is available, which enables you to list all categories. You can post this as a feature request in our feedback section:

www.rsjoomla.com/feedback.html

and we will take it into consideration for future revisions.

You can read more on RSEvents!Pro's menu items here:

www.rsjoomla.com/support/documentation/v...t-in-menu-items.html
Category: RSEvents!Pro
01 Jul 2013 06:28

octavian

Have you tried:
//<code>
$doc = JFactory::getDocument();
return $doc->getTitle();
//</code>
Category: RSForm! Pro
28 Jun 2013 20:47

sarinashish

Hello,

is it possible to create a menu link in joomla that links to a specific category?

Thanks
Ash
Category: RSEvents!Pro
28 Jun 2013 18:52

tecpromotion

Did you have a solution?
I was looking for this too.

Thanks.
Category: RSForm! Pro
28 Jun 2013 12:19

bepos

hahaha calvin9 i just made the same mistake.... glad you made it first ;-)
Category: RSForm!
27 Jun 2013 04:22

gboreland

Hi,

I have configured a menu item to display a list of events.

This works like a treat, however is there a way I can customise the header of the page to add some copy about the events rather than just display a list of events?

Regards
Geoff
Category: RSEvents!Pro
20 Jun 2013 15:57

ysbook12

Kind of. The only think I want to clarify is that it not just one text/input field it would be multiple fields.

User selects 2 from the drop down menu and we will show two sets of the basic contact information fields. AKA email, phone, address.

Does this change your answer?

Dave
Category: RSForm! Pro
19 Jun 2013 10:21

silviup

The easiest way to achieve this would be to have two forms, one for the unregistered users, which includes the Joomla! registration integration and one for the registered users which does not include the Joomla! registration integration. You can easily separate the two forms from registered and unregistered users by assigning them to separate menu items that have different access levels (public and registered).
Category: RSForm! Pro
11 Jun 2013 15:29

Barboo

How do you indicate which form displays in the menu item or module if you don't use {rsform #}?
Category: RSForm! Pro
Displaying 766 - 780 out of 1614 results.