Good art is a taste, good design is an opinion.


Come as guest, stay as family.
Board Index

Come as guest, stay as family.


You are not connected. Please login or register

Foto

[Solved] Question form



View previous topic View next topic Go down Message [Page 1 of 1]

1
Offline

  KiNGphx

KiNGphx
Punbb Guru
Punbb Guru
Details:
[Solved] Question form How10

Your Forum Address:
jangkeunsukmindanao.forums.fm

Forum Version:
PunBB

Powered by PunBB
Currently 0 users have thanked KiNGphx for this post:

2
Offline

  Shadow

Shadow
Administrator
Administrator
Hey,

It's a very complex code and hard to be done. I myself don't have time to code it with specific fields for your needs, if there is someone who can do it in some lighter edition these forms it will be nice.

Powered by PunBB
Currently 0 users have thanked Shadow for this post:

3
Offline

  KiNGphx

KiNGphx
Punbb Guru
Punbb Guru
its ok . but anybodys can teach me i will appreciate it Smile

Powered by PunBB
Currently 0 users have thanked KiNGphx for this post:

4
Offline

  KiNGphx

KiNGphx
Punbb Guru
Punbb Guru
anybody can teach me how to do it ? bump ! Sad

Powered by PunBB
Currently 0 users have thanked KiNGphx for this post:

5
Offline

  KiNGphx

KiNGphx
Punbb Guru
Punbb Guru
bump ? anyone know about this ? pls

Powered by PunBB
Currently 0 users have thanked KiNGphx for this post:

6
Offline

  Shadow

Shadow
Administrator
Administrator
This is the example of "ask a question" HTML code we used here,

Code:
[panda=html]<script>
    html_tpl = "<b>Title:</b> $0 <br><br><b> Name of the Question:</b> $1 <br><br><b>Forum Address:</b> $2<br><br><b>Forum Version:</b> $3 <br><br>";
    bbcode_tpl = "[b]Details:[/b]\n$1\n\n[b]Your Forum Address:[/b]\n$2 \n\n[b]Forum Version:[/b]\n$3 ";
    $(document).ready(function(){
      $('#bt-apagar').click(function() {
          $('#form-submit input[type="text"],#form-submit textarea').val('');
          $('input[name="f"]').val($(this).val());
      });
      $('#bt-pr-questao').click(function() {
          tpl = html_tpl;
          tpl = tpl.replace("$0", $('#titulo').val());
          tpl = tpl.replace("$1", $('#text_editor_textarea').val());
          tpl = tpl.replace("$2", $('#endereco').val());
          tpl = tpl.replace("$3", $('#versao').val());
          $('html, body').animate({
            scrollTop: $("#pr-questao").offset().top
          }, 800);
          $('#pr-questao').slideDown(300);
          $('#html-questao').html(tpl);
      });
      $('#bt-enviar').click(function() {
          tpl = bbcode_tpl;
          if($('#titulo').val()!=='' && $('#text_editor_textarea').val()!=='' && $('#endereco').val()!=='' && $('#versao').val()!==''){
            jQuery(this).closest('.submit-buttons').fadeOut();
            jQuery(this).closest('.submit-buttons').next('#js').fadeIn();
            tpl = tpl.replace("$0", $('#titulo').val());
            tpl = tpl.replace("$1", $('#text_editor_textarea').val());
            tpl = tpl.replace("$2", $('#endereco').val());
            tpl = tpl.replace("$3", $('#versao').val());
            $('input[name="message"]').val(tpl);
            $('input[name="subject"]').val($('#titulo').val());
            jQuery('#bt-enviar-e').click();
            jQuery('#form-submit').slideUp(300);
            jQuery('#enviado').slideDown(800);
          }else{
            $('#erro').slideUp(1);
            $('#erro').slideDown(800);
          }
      });
  jQuery('#bts .inner #js #js-but span .js-radio').click(function() {
      jQuery('#bts .inner #js #js-but').find('input[class="js-radio"]').removeAttr('checked');
      jQuery(this).attr('checked','checked');
      jQuery('#bts .inner #js').fadeOut();
      jQuery('#bts .inner .submit-buttons, .panel#form-part2').fadeIn();
      if(jQuery(this).attr('name')=="yes-js") {
        jQuery('#frame_perf').contents().each(function() {
            if(jQuery(this).find('form[action="/profile"] .main-content .frm-set dl:contains("Pedidos disponíveis") dd input').val()=="0") {
              jQuery('#bts .inner .submit-buttons').html('<span style="color: red; font-weight: bold; padding: 5px 0;font-size: 13px;">Erro: Limite de pedidos relacionados á JS atingido!</span>');
              jQuery('#bts .inner #js, #frame_perf').remove();
            } else {
              var input=Number(jQuery(this).find('form[action="/profile"] .main-content .frm-set dl:contains("Pedidos disponíveis") dd input').val());
              var valpd=Number(1);
              var somah=Number(input) - Number(valpd);
              jQuery(this).find('form[action="/profile"] .main-content .frm-set dl:contains("Pedidos disponíveis") dd input').val(somah);
              jQuery(this).find('form[action="/profile"]').find('input[class="button2"][type="submit"][name="submit"][value="Salvar"]').click();
            }
        });
      }
  });
      $('#bt-pr-fechar').click(function() {
          $('html, body').animate({
            scrollTop: $("#pr-questao").offset().top
          }, 800);
          $('#pr-questao').slideUp(300);
          return false;
      });
      $('#titulo').click(function() {
          if($('#titulo').val()=='Coloque aqui um título descritivo sobre a sua questão'){
            $('#titulo').val('');
          }
      });
      jQuery('#titulo').keyup(function(){
          var t=document.getElementById('titulo').value.length;
          var i=document.getElementById('identifytitle');
          if(t<10&&t>0){
            var l=t-10;i.innerHTML='You need  '+l*-1+' characters'
          }
          else{
            i.innerHTML=''
          }
      });
      if(VarGET('f')!==''){
          $('#form-part2, #bts').slideDown(800);
          $('input[name="f"]').val(VarGET('f'));
          $('#bt-selecciona-forum').val(VarGET('f'));
      }
    });
    </script>
<form action="/post" method="post" id="form-submit">
   
   <div id="erro" style="display:none;" class="panel">
      
      <div class="inner">
          <span class="corners-top"><span></span></span>
         <center>
             <span class="conteudo_texto" style="color:#C00"><strong>Você deve preencher todos os campos</strong></span>
         </center><span class="corners-bottom"><span></span></span>
      </div>
      
   </div><br /><br />
   <div class="panel">
      
      <div class="inner">
         
         <div class="main-content frm-set">
             <strong>Note:</strong> Before ask a question, use Search option maybe that question is already answered.
         </div>
         
      </div><span class="corners-bottom"></span>
   </div>
   
   <div class="panel" id="form-part2" style="">
      
      <div class="inner">
          <span class="corners-top"><span></span></span><br /><fieldset class="fields1"><dl><dt></dt><label></label>Topic title:<dd><input id="titulo" placeholder="Name of the Question" class="inputbox" style="clear: both; width: 510px;" type="text" /></dd></dl></fieldset>
         <div id="identifytitle" style="display: inline;">
            
         </div><fieldset class="fields1"><dl></dl><dd></dd><br /><dl><dt></dt><label></label>Your Forum Address:<dd><input id="endereco" placeholder="Your Forum Address" class="inputbox" style="clear: both; width: 510px;" type="text" /></dd></dl></fieldset>
         <div id="ender" style="display: inline;">
            
         </div><fieldset class="fields1"><dl><dd></dd></dl><br /><dl><dt><label>Forum Version:</label></dt><dd><select class="inputbox" id="versao"><option value="PunBB">PunBB</option><option value="Phpbb3">Phpbb3</option><option value="Phpbb2">Phpbb2</option><option value="Invision">Invision</option></select></dd></dl><dl><dt><br /><label>Question:<span style="color: red;"><strong> To post IMAGES just post link without [img][/img] tags.</strong></span></label></dt><strong><dd><textarea id="text_editor_textarea" name="questao" class="inputbox" tabindex="14" style="clear: both; height: 280px; width:880px;"></textarea><input name="subject" type="hidden" /><input name="message" type="hidden" /><input name="mode" value="newtopic" type="hidden" /><input name="f" value="7" type="hidden" /><input name="lt" value="0" type="hidden" /><span class="corners-bottom"><span></span></span></dd></strong></dl></fieldset>
      </div>
      
   </div>
   
   <div id="sthd" style="margin:0px">
      
   </div><strong><br /></strong>
   <div id="bts" style="" class="panel">
      
      <div class="inner">
          <span class="corners-top"><span></span></span><fieldset class="submit-buttons" style=""><input id="bt-enviar" value="Send Question" class="button1" name="post" type="button" /><input id="bt-enviar-e" value="Enviar Questão" class="button1" style="display:none;" name="post" type="submit" /></fieldset>
      </div><style>.button1 {
    background: url("http://i43.servimg.com/u/f43/15/93/99/44/highli10.png") repeat-x scroll 0px 0px purple !important;
    border-radius: 3px 3px 3px 3px;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.3);
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: block;
    font-size: 11px;
    font-weight: 400;
    height: 20px;
    line-height: 23px;
    margin: 6px 1px;
    padding: 1px 6px 3px;
}

.pun input {



    border-width: 1px;
    padding: 4px;
}</style>
   </div><strong></strong>
</form>
 

Powered by PunBB
Currently 0 users have thanked Shadow for this post:

7
Offline

  Sponsored content



Powered by PunBB
Currently 0 users have thanked Sponsored content for this post:

View previous topic View next topic Back to top Message [Page 1 of 1]


Topic URL's

URL
BBcode
HTML

Permissions in this forum:
You cannot reply to topics in this forum