vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   Help with an AJAX function (https://vborg.vbsupport.ru/showthread.php?t=305090)

Joe Blow 11-27-2013 10:58 AM

Help with an AJAX function
 
I have someone helping me out with a minor modification on my vB 4.2.1 forum who is having trouble with an AJAX function.

A custom checkbox userfield needs to be updated. Here is the line for the AJAX request:

Code:

var postData = {"do" : "saveuserfield", "fieldid" : "5", "securitytoken" : SECURITYTOKEN, "userfield" : {"value" : cValue}};
How do you set the userfield array for this request, since there is no documentation for it? The function that is being called is saveuserfield and is located in ajax.php

Any ideas?

Any help appreciated!

kh99 11-27-2013 01:19 PM

Here's some code from clientscript/vbulletin_profilefield_edit.js:

Code:

    var A = new vB_Hidden_Form(null);
    A.add_variables_from_object(this.element);
    YAHOO.util.Connect.asyncRequest("POST", fetch_ajax_url("ajax.php"), {success: this.post_save, failure: this.request_timeout, timeout: vB_Default_Timeout, scope: this}, SESSIONURL + "securitytoken=" + SECURITYTOKEN + "&do=saveuserfield&fieldid=" + this.fieldid + "&" + A.build_query_string())


this.element is the form object that has the fields for the profilefield being edited. You can also just call the vB_Hidden_Form function add_variable() for each variable to be added, if there's no form object. The code for vB_Hidden_Form is in clientscript/vbulletin-core.js.


All times are GMT. The time now is 08:55 AM.

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.00872 seconds
  • Memory Usage 1,708KB
  • 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
  • (2)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (2)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