Page 1 of 1

Show and Hide Grids

Posted: Tue May 14, 2019 6:46 pm
by vdelairewa
Hi All

Below I have the javascript coding for showing and hiding 2 Grids if I check any or both the checkgroup.
How Can I select only 1 check box to be selected at a time (not both)? I know it would be easier to do a dropdown but my coding doesn't seem to work.
Code: Select all
function showHideFields (newValue, oldValue) { 
    if (newValue.indexOf('SalRef') != -1) {
        $('#salerefundtemp').show();
    }
    if (newValue.indexOf('SalRef') == -1) {
        $('#salerefundtemp').hide();
    }
    if (newValue.indexOf('CCR') != -1) {
        $('#CCR').show();
   }
 
    if (newValue.indexOf('CCR') == -1) {
        $('#CCR').hide();
    }
 }

// HIDE FIELDS:
$("#salerefundtemp").hide();
$("#CCR").hide();

// END HIDE FIELDS

$("#chk_request").setOnchange(showHideFields); //when field changes
//when Dynaform loads:
showHideFields( $("#chk_request").getValue(), $("#chk_request").getValue() );

Re: Show and Hide Grids

Posted: Tue May 14, 2019 7:41 pm
by amosbatto
See this example to only allow one option to be marked in a checkgroup:
https://www.pmusers.com/index.php/Only_ ... checkgroup

Re: Show and Hide Grids

Posted: Sat Jun 24, 2023 4:32 am
by sam1369
Hi
Please help me
I can't open the Pmusers website
please guide me