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: show hide
05 Oct 2011 19:58

silverscape

Hi -- does anybody know how to hide this form from a single page? No matter what I try, where I try, this confounded form cannot be removed from one of my single pages. I did not set up the initial configuration, but I have tried all the obvious methods. See below...

Joomla form - hide?
screencast.com/t/wuj3U5V2vej


Rsform 1 settings
screencast.com/t/xaTMO63Xr

Note: I have set the module to exclude the web page further above. Yet, it still shows.

Article-rsform-menu...
Category: RSForm! Pro
01 Sep 2011 19:16

rex3

want to make several fields appear upon select eg. select radio drop down 10 and 10 Address fields then appear. I've been attempting to do this with the script you provide "show hide other radio example" but with no success.
Any help much appreciated.
I can get one form item to appear but not several at once.

This is what i have atttempted - no success. (here using the && to place more than one form item together)


<script type="text/javascript">
function displayField(field)
{...
Category: RSForm! Pro
24 Aug 2011 20:21

cvalencia

I'm trying to get the value from a menu and, based on the menu selection, it will show or hide certain divs/objects. I know there is an example of how to do it with a radio list but how do I do the SAME THING but with a menu?
Category: RSForm! Pro
20 Aug 2011 23:57

vick6

Hello:

I have successfully implemented hide/show with one field which was pretty stright forward.

I tried using the same technique with multiple fields and another one i found on this forum but it doesn't work,

I'm not very good with JavaScript and needed some help.

This is the Code I'm Using:
<script>
function displayField(field){
 
if(document.getElementById('AddMoreMember1').checked)
 
{
 
document.getElementById('helement1').style.display="";...


Thanks in advance,

Victor
Category: RSForm! Pro
13 Aug 2011 10:17

emptypixels

Is there a way to hide events from non-registered users, or to only allow one user group to view an event category?

My ultimate goal would be to show one category to the the Public Group, and then to show that category and one additional category to Registered users after they have logged in.

Thanks for your help.
Category: RSEvents!
28 Jul 2011 07:52

andreic

Hello,

If I understand correctly you want to allow only users with a certain access level permission to view the form. This can be achieved, but you will require some custom scripting. You will need to add a script in "Scripts called on form display" that checks the user group the logged in user belongs to and show/hide the form based on the result.
Category: RSForm! Pro
28 Jun 2011 07:49

andreic

Hello,

In order to hide the captions as well you could try adding an unique id to the <tr> tag that contains the fields you want to show/hide and use those id's in the if statements. This way both the caption and the fields will be hidden when the conditions are met. You can see an example on this topic on our demo server:

demo.rsjoomla.com/fex

This examples also shows how to hide the fields automatically when the page is loaded.
Category: RSForm! Pro
24 Jun 2011 05:25

hedgelayer

andreic wrote:
Hello,

You can choose to show or hide the unsubscribe link in the email in Components > RSMail! > Settings > Other > Mail Footer. If you accidentaly deleted the HTML code, try adding this in the "Message" textfield:

<table width="100%" cellspacing="0" cellpadding="10" style="border:1px solid;">
<tr>
<td width="100%" bgcolor="#ffffff"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">This message was sent from {sitename} to {email}. You can modify/update your...
Category: RSMail!
17 Jun 2011 07:11

tomzoll

Hello. Is this possible that I can use show/hide fields with more than 1 question in the form? When i use one show/hide field with only 1 question (radio buttons) it works. When i create second, third etc. question and try to use show/hide field - it doesn't work (fields on second, third questions are always shown).

Thank you
Category: RSForm! Pro
16 May 2011 23:38

admagination

Maybe someone knows this second level script or dynamic loading...or whatever term is used! I have an Excel with three fields: 1) State 2) Type 3) Call Letters

So I want dropdown (DD) 1 to have the states listed in it. Loaded when I make the DD field.

Then DD 2 will have the simple selection of Type...TV or Radio

Then DD 3 will pull from the db all the call letters from the selections made in DD 1 and DD 2. I've heard this called "populate", "dynamic look up", "show / hide", the...
Category: RSForm! Pro
15 May 2011 10:37

jensl1972

Hey all!
I cant get this to work.
I tried the exact solution in the first post but only succeded in hiding a field.

It seem to me as this post is missing the code to put in Scripts tab for the form
Category: RSForm!
10 May 2011 09:32

NEMGTR_webmanager

Hello,
I'm not a programmer but I do look at the code posted in the forum to help me learn. I posted to the mods about what the code should look like without the emoticons in it. I don't use them so I don't know off-hand what characters make up each one. And I figured that the character sequence was important.
What I got back may be of help to you:
___________________________
The respective code lines from the forum post should be like this:

document.getElementById('hide1').style.display="";...
Category: RSForm! Pro
09 May 2011 09:24

fredmi

Hello,

I'm trying to show / hide multiple fields using a checkbox (and not a radio button).

But unfortunately... it does not completely works.
Fields with 'hide1' & 'hide2' IDs are not visible in the form (yepeee this part is OK > window.addEvent works).
But when I click on the checkbox to display fields, nothing happens.

Any idea? Thanks for help ! Here is my code...


<script type="text/javascript">
function displayField()
{
if(document.getElementsByName('form[Checkk]').checked)
{...
Category: RSForm! Pro
05 May 2011 05:45

bmdesign

Hm i'm trying to show different fields with each radio button so i tried to do
if(document.getElementById('Attending0').checked)
{
document.getElementById('helement').style.display="";
document.getElementById('hGuest').style.display="none";
}
else if(document.getElementById('Attending1').checked)
{
document.getElementById('helement').style.display="none";
document.getElementById('hGuest').style.display="";
}
but it doesn't work, it just shows both fields like it would break the code, what do I...
Category: RSForm! Pro
04 May 2011 11:52

djsteven

adamevans,

This is the code
onclick="
if (this.value == 'option 4') document.getElementById('helement').style.display = ''; else document.getElementById('helement').style.display = 'none';";
 
In the Form Layout code is this
 
<tr id="helement">
		<td>{Name:caption}</td>
		<td>{Name:body}<div class="formClr"></div>{Name:validation}</td>
		<td>{Name:description}</td>
	</tr>
Note: All this code is without the symbol \

I think this can help

Regards from Costa Rica
Category: RSForm!
Displaying 271 - 285 out of 404 results.