vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Can send private message via AJAX in FF not IE!?! (https://vborg.vbsupport.ru/showthread.php?t=203094)

RealAdvice 01-25-2009 09:49 PM

Can send private message via AJAX in FF not IE!?!
 
I am wanting to send private messages via AJAX but the script will not echo a response via AJAX in IE6 or IE7???? Below is code, what am I doing wrong?? A link opens a form in MoodalBox, then should post the result to private.php.

Code:

Removed

Dismounted 01-26-2009 04:34 AM

I've found that IE is extremely picky about Javascript. When you run the script in IE and IE doesn't like it, you should see a yellow warning sign in the bottom right corner. Click this to find the error.

RealAdvice 01-28-2009 02:47 PM

Thanks for the tip. Here's the result so far...

I have a separte .php page that works. It will look for when you click the submit button and send the result via Ajax. Works in FF3 and IE7.

Tried to integrate this into the member.php page. I want to have the user click a link or graphic and pass two variables to the form (hidden fields such as who the message is going to) and also add the security token as a hidden field on the form. This works successfully. However, when I try integrating the two together, I can't save the form results via Ajax. The security token is missing! What's weird as well is in my stand alone .php script, I don't need to pass a queryString to the YAHOO.util.Connect.asyncRequest in the fourth variable, but it seems I do when I integrate within a js function.

Here's what I have from a bird's eye view:

Example 1:
sample_yui_ajax.php
1. First shows the HTML form on the page with static values placed in the appropriate values of the form to test sending (security token, my user id and username, username of who i want to send the test message to via ajax).
2. JS declares an object AjaxObject for all the ajax functionality.
3. After the AjaxObject declaration, calls YAHOO.util.Event.addListener(window, 'load', AjaxObject.init); which will wait for the user to click the submit button and send the result.

Example 2:
member.php
1. Link on the page next to a user name will call a js function and pass 2 variables.
2. Via ajax, passes 2 variables and retrieves the username, current security token, etc to put values into the private message form.
3. Creates the form and echoes the html for the form.
4. The function adds the form to a div.
5. When the listener looks for the user to submit the form, I get a message that the security token is missing.

I've narrowed it down to the listener. Any suggestions?

Code below:
Example 1:
Code:

<body> 
<?php

        $results = <<<FORM
<div id="myajaxprivatemsg_container">
<form name="myajaxprivatemsg_form" id="myajaxprivatemsg_form">

<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center">
<tr>
        <td class="tcat">Send New Private Message</td>

</tr>

<tr>
        <td class="panelsurround" align="center">
        <div id="myajaxtest_dialog_text" class="panel">
                <div align="left" style="max-width:640px; width:auto !important; width:480px">
               
                <!-- recipients field -->
                        <table cellpadding="0" cellspacing="3" border="0">
                        <tr>
                                <td class="smallfont">
                                       
                                        <div id="pmrecips">
                                            <table width="100%">
                                                  <tr>
                                                    <td width="75" valign="top" class="smallfont">
                                                          $touseridpic
                                                        </td>
                                                        <td width="75" valign="top" class="smallfont">
                                                          <br/>
                                                          To:<br/><br/>
                                                          Subject:
                                                        </td>
                                                        <td valign="top" class="smallfont">
                                                          <br/>
                                                          <b>$recipients</b><br /><br/>
                                                          <input type="text" name="title" id="title" value="$title" size="40" class="smallfont" />
                                                        </td>
                                                  </tr>
                                                </table>
                                        </div>
                        </tr>
                        </table>
                <!-- / recipients field -->

                <!-- message area -->
                        <table cellpadding="0" cellspacing="3" border="0">
                        <tr>
                                <td class="smallfont">
                                       
                                        <!--script type="text/javascript" src="/clientscript/vbulletin_ajax_namesugg.js?v=380"></script-->
                                       
                                        <div>Message:</div>
                                        <div id="pmrecips">
                                                <textarea name="message" id="message" rows="4" cols="80" style="display:block; width:500px; height:95px" tabindex="1" class="smallfont"></textarea>
                                                <input type="hidden" name="s" value="" />
                                                <input type="hidden" name="recipients" id="recipients" value="$recipients" />
                                                <input type="hidden" name="userid" id="userid" value="$userid" />
                                                <input type="hidden" name="username" id="username" value="$username" />
                                                <input type="hidden" name="securitytoken" id="securitytoken" value="$securitytoken" />
                                                <input type="hidden" name="do" id="do" value="insertpm" />
                                                <input type="hidden" name="ajax" id="ajax" value="true" />
                                                <input type="hidden" name="wysiwyg" id="wysiwyg" value="0" />
                                                <input type="hidden" name="iconid" id="iconid" value="0" />
                                                <input type="hidden" name="pmid" id="pmid" value="" />
                                                <input type="hidden" name="forward" id="forward" value="" />
                                                </div>
                        </tr>
                        </table>

                <!-- / message area -->

                                        <div style="padding:3px" class="smallfont">
                                                <div><label for="cb_receipt"><input type="checkbox" name="receipt" value="1" id="cb_receipt" />Request a read receipt for this message</label></div>

                                                <div><label for="cb_savecopy"><input type="checkbox" name="savecopy" value="1" id="cb_savecopy" tabindex="1"  checked="checked" />Save a copy of this message in your <a href="private.php?folderid=-1">Sent Items</a> folder.</label></div>

                                        </div>               
               
                </div>
        </div>

        <div id="myajaxtest_buttons" style="margin-top:6px">
                <!--input type="submit" id="send_form" class="AjaxButtonBlue" value="Send"-->
                <input type="button" name="submitter" id="submitter" class="AjaxButtonBlue" value="Submit Message" accesskey="s" />
                <input type="button" name="cancel" id="cancel" class="AjaxButton" value="Cancel" tabindex="2" onclick="MOOdalBox.close();" />
        </div>
        </td>
</tr>
</table>

</form>
</div>
FORM;

        echo $results;

?>
 <!-- Scripts --> 
 
<script type="text/javascript" src="http://yui.yahooapis.com/2.6.0/build/yahoo/yahoo-min.js"></script>
<script type="text/javascript" src="http://yui.yahooapis.com/2.6.0/build/dom/dom-min.js"></script>
<script type="text/javascript" src="http://yui.yahooapis.com/2.6.0/build/event/event-min.js"></script>
<script type="text/javascript" src="http://yui.yahooapis.com/2.6.0/build/connection/connection-min.js"></script>
<script type="text/javascript" src="http://yui.yahooapis.com/2.6.0/build/animation/animation-min.js"></script>

<script type="text/javascript">

function pause(millis)
{
  var date = new Date();
  var curDate = null;

  do { curDate = new Date(); }
  while(curDate-date < millis)
}
       
var AjaxObject = {
  init: function() {
      // Grab the elements from the form
      AjaxObject.form = document.getElementById('myajaxprivatemsg_form');
      AjaxObject.ajaxSearchResult = document.getElementById('myajaxtest_dialog_text');
          AjaxObject.ajaxSearchButtons = document.getElementById('myajaxtest_buttons');
          AjaxObject.ajaxWholedoc = document.getElementById('myajaxprivatemsg_container');
     
      // Set the Ajax Search result div to 1 (aka visible) so we can see the progress meter
      YAHOO.util.Dom.setStyle(AjaxObject.ajaxSearchResult, 'opacity', 1);
     
      // Hijack the form
          YAHOO.util.Event.addListener("submitter", "click", AjaxObject.myajaxsubmit_ajax_form);
  },
 
  myajaxsubmit_ajax_form: function(e) {
      YAHOO.util.Event.preventDefault(e);
      YAHOO.util.Connect.setForm(AjaxObject.form);
     
      // Temporarily disable the form while Ajax saves the data
      for(var i=0; i<AjaxObject.form.elements.length; i++) {
            AjaxObject.form.elements[i].disabled = true;
      }

          YAHOO.util.Dom.setStyle(AjaxObject.ajaxSearchResult, 'display', 'block');
         
          AjaxObject.ajaxSearchResult.innerHTML = "";
          AjaxObject.ajaxSearchResult.innerHTML =
      '        <br /><br /><br /><br /><br /><br /><br /><br />' +
          '        <span class=\"search_result_text\"><img src=\"/images/ajax/ajax_loading_blue_small.gif\"> Sending...</span>' +
      '        <br /><br /><br /><br /><br /><br /><br /><br />';
      AjaxObject.ajaxSearchButtons.innerHTML = "";

      var cObj = YAHOO.util.Connect.asyncRequest('POST', 'private.php', AjaxObject.myajaxtest_callback);
  },
 
  myajaxtest_callback: {
      success: function(o) {
          var myajaxtest_respsonse_text = o.responseText;
               
          // Set up the animation on the results div.
          var myajaxtest_results_fade_out = new YAHOO.util.Anim(AjaxObject.ajaxSearchResult, {
                opacity: { to: 0 }
                }, 0.25, YAHOO.util.Easing.easeOut); // 0.25 is the time it takes to fade out
                       
          var myajaxtest_dialog_fade_out = new YAHOO.util.Anim(AjaxObject.ajaxWholedoc, {
                opacity: { to: 0 }
                }, 1.00, YAHOO.util.Easing.easeOut); // 0.25 is the time it takes to fade out

          YAHOO.util.Dom.setStyle(AjaxObject.ajaxSearchResult, 'display', 'block');
         
          var myajaxtest_results_fade_in = new YAHOO.util.Anim(AjaxObject.ajaxSearchResult, {
                opacity: { to: 1 }
                }, 0.25, YAHOO.util.Easing.easeIn); // 0.25 is the time it takes to fade in
                       
          myajaxtest_results_fade_out.onComplete.subscribe(function() {
                AjaxObject.ajaxSearchButtons.innerHTML = "";
                AjaxObject.ajaxSearchResult.innerHTML = myajaxtest_respsonse_text;
                myajaxtest_results_fade_in.animate();
                //pause(5000);
              //myajaxtest_dialog_fade_out.animate();
          });

          myajaxtest_results_fade_out.onComplete.subscribe(function() {
                //Re -enable the form.
                for(var i=0; i<AjaxObject.form.elements.length; i++) {
                  AjaxObject.form.elements[i].disabled = false;
          }});
               
          myajaxtest_results_fade_out.animate();
      },
     
      failure: function(o) { // In this example, we shouldn't ever go down this path.
            alert('An error has occurred');
      },
          cache: false
  }

};

YAHOO.util.Event.addListener(window, 'load', AjaxObject.init);

</script>
       
</body>

Example 2:
Need to integrate into the below:

Code:

function myajaxtestPrivateMsgAJAX(catid,touserid) {
  var ajaxSearchResult = document.getElementById('myajax_privatemsg_ajaxresult');
  var queryString = "?ajax=true&catid=" + catid + "&touserid=" + touserid;
}


RealAdvice 02-02-2009 02:47 AM

Anyone can help with this? Dismounted?

Dismounted 02-03-2009 05:30 AM

Did you check IE's error?


All times are GMT. The time now is 01:43 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01223 seconds
  • Memory Usage 1,786KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete