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
22 Oct 2010 08:30

andreic

Hello,

In order to use a dropdown field instead of a radio group you will need to perform some modifications to the script. Please try using:
<script type="text/javascript">
function displayField()
{
document.getElementById('hide').style.display="none";
 
if(document.getElementById('d1').value == your_first_dropdown_value)
document.getElementById('hide').style.display="none";
 
if(document.getElementById('d1').value == your_second_dropdown_value)...
Category: RSForm! Pro
21 Oct 2010 09:53

thomas.johannessen

Please advice.

I need to to this:

www.rsjoomla.com/customer-support/docume...-or-hide-fields.html

but with dropdown menus selection.

Can I use the same ?
Category: RSForm! Pro
21 Oct 2010 09:04

thomas.johannessen

the code is messed up. I need to do the same. please send me the code u use, can u do that?

Thomas
Category: RSForm!
19 Oct 2010 07:01

andreic

Hello,

Please try using :
if(document.getElementById('Attending0').checked)
{
 document.getElementById('helement').style.display="none";
 document.getElementById('hGuest').style.display="none"; 
}
Category: RSForm! Pro
16 Oct 2010 18:14

mark69

Here is the code i am using i cant figure out what is wrong please help


<script type="text/javascript">

if(document.getElementsByName('form[Attending]')[0].checked)
{
document.getElementById('helement').style.display="none";
document.getElementById('hGuest').style.display="none";
}

if(document.getElementsByName('form[Attending]')[1].checked)
{
document.getElementById('helement').style.display="";
document.getElementById('hGuest').style.display="";
}
</script>
<div...
Category: RSForm! Pro
12 Oct 2010 05:49

ronald2

Hello,

When I enter a folder and then press 'download' button, I get redirected to the download page. On this page I see on the top menu several buttons, like 'Begin', 'Details', 'Rapportage' and so on.

From this top menu I don't want the button 'details' to be shown.

Can you help me where I can remove this? I checked under 'themes'-'template'-'default', but there I can not find it.

Thanks in advance.


Ronald
Category: RSFiles!
10 Oct 2010 04:39

thomas.johannessen

I need to add onclick="showMe('div1', this)" to checkboxes. to hide/show divs on click on them

where do I put that ??
Category: RSForm! Pro
20 Sep 2010 07:51

andreic

Hello,

You could try hiding your images and only display them when the user selects a value from the dropdown. This can be achieved with the help of some custom scripting. You can see an example on this topic here:

www.joomla-form.com/form-examples/form-s...w-hide-field-example
Category: RSForm! Pro
18 Aug 2010 14:52

lucrece

I did this and got a strange:
id="hide"> id="hide">
now at the top of my form just under the title.

I did this as per the instructions:
The element I am trying to use to determine the conditional is called "Client Pages." In additional attributes I put this code:
onclick="displayField();"

Then in the Form Layout, I inserted this code at the end of the table:
<script type="text/javascript">
function displayField()
{
if(document.getElementsByName('form[Client Pages]')[0].checked)...
Category: RSForm! Pro
18 Aug 2010 08:07

didomi

Solved...I needed to initiate the JavaScript when the form loaded, not simply when the first radio was clicked...
<script type="text/javascript">
displayStyleOptions();
</script>

...simples
Category: RSForm! Pro
18 Aug 2010 08:03

bogdanc

Hello,

You can try setting the script to something like this:
<script type="text/javascript">
 
function displayStyleOptions() {
 
if(document.getElementsByName('form[style]')[0].checked) {
document.getElementById('hideI').style.display="none"
document.getElementById('hideAtoH').style.display="";
}
 
if(document.getElementsByName('form[style]')[1].checked) {
document.getElementById('hideI').style.display="none"
document.getElementById('hideAtoH').style.display="";
}
 
}...

Let me know...
Category: RSForm! Pro
18 Aug 2010 06:05

didomi

This should be quite simple but I've been scratching my head for some time now!

I've followed this tutorial which gets me to about 90% of where I need to be which is great... http://www.rsjoomla.com/customer-support/documentations/34-custom-scripting/93-show-or-hide-fields.html.

So now I have a form where by clicking on certain radio buttons hides certain fields. But how do I set it up so the default state is to have those fields hidden and clicking on certain radio buttons reveals them?...
Category: RSForm! Pro
17 Aug 2010 15:38

petelacis

alexp wrote:
Hello everyone,

This article in our knowledgebase is very similar to what you are trying to do:

www.rsjoomla.com/index.php/rsformpro.cus...-or-hide-fields.html

The link posted in this doesn't work. I am trying to do the same thing where the answer to one question will dynamically "reveal" another child question.

I have been trying to work with the documentation via...
Category: RSForm!
05 Aug 2010 17:03

wirecreative2

The ability to use RSMembership groups to determine access to modules and other components would be a great enhancement.

I know you can set shared content by URL, but that's limited in scope (and doesn't include a fluid way to retrieve the URLs you want to restrict). If you're using K2, for example, there's no elegant way for RSMembership to effectively restrict entire categories and individual items within those categories without listing every URL.

Also, a plugin to dynamically restrict...
Category: RSMembership!
02 Aug 2010 08:38

bogdanc

Hello,

You can refer to this article from the product's documentation where it is explained how you can show/hide fields based on the user's selection with RSForm! Pro:

www.rsjoomla.com/customer-support/docume...-or-hide-fields.html

Also, in order to disable a field, you can set the field disabled rather then hiding it, as it is in the script above.

You can see a demo for the component on our demo site:

demo.rsjoomla.com/...
Category: RSForm! Pro
Displaying 301 - 315 out of 404 results.