The Joomla! Forum ™



Forum rules


Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.



Post new topic Reply to topic  [ 1 post ] 
Author Message
PostPosted: Wed Mar 21, 2012 5:35 pm 
Joomla! Apprentice
Joomla! Apprentice

Joined: Mon Jan 24, 2011 5:51 pm
Posts: 15
Hello to all!
I made a small hack to listbingo user's profile for show more option to personalize your profile when you selection a checkbox on yes appears other field to complete.
But I don't know how memorize the checkbox in database.
I have just created the table for the fields and its works.

Can you help me?
Thanks you!

This is a cade that i have made:

Code:
<script type="text/javascript" language="JavaScript">
function HidePart(d) { document.getElementById(d).style.display = "none";  }
function ShowPart(d) { document.getElementById(d).style.display = "block"; }
function CheckboxChecked(b,d)
{
   if(b) { ShowPart(d); }
   else  { HidePart(d); }
}
                  </script>
<form name="myform1" method="GET" action>
<div>
   <label>You want a photo?</label> YES</strong><input name="mycheckbox" type="checkbox" value="yes" value="<?php echo $this->profile->yes;?>" onclick="CheckboxChecked(this.checked,'yes')">
   </div>
          <div id="yes" style="display:none">
      
      <ul>
         <table>
                        <br>
            </div>
            <div>
            <label id="imagemsg" for="image"><?php echo JText::_('PHOTO');?></label>
            <input type="file" name="image" size="27" /> </div>
            <?php
}
?>
<div>
            <label id="tel" for="tel"><?php echo JText::_('TEL');?></label>
            <input name="tel" maxlength="15" type="text" id="tel" value="<?php echo $this->profile->tel;?>" />
            </div>
                        
            
         </table>
         </li>
      </ul>
   </div>
</form>


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 1 post ] 



Who is online

Users browsing this forum: W3C [Validator] and 14 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB® Forum Software © phpBB Group