ajax

How to use ajax tabcontainer in formview?

How to add a tabcontainer in a formview template? I am sure i have a scriptmanager inside the page. but it keep compliaint "A ScriptManager is required on page to use ASP.NET AJAX Script Components. I have also tried move the ScriptManager inside the itemTemplate but same error. ...

Is it possible to download image using Ajax

I know we can request xml, html as well as text images directly using ajax but can we request files like image, zip etc. using Ajax. How ? ...

jQuery.post raises INVALID_STATE_ERR (11)

jQuery(document).ready(function(){ jQuery('#frmSS1').submit(function(){ debugger; jQuery.post( jQuery('#frmSS1').attr('action'), { email : jQuery('#frmSS1 .email-input').val(), format : jQuery('#frmSS1 .format-input').val(), ...

How to create the automatic mass form submitter script to be used on the 3rd part websites, where I know their fields names-values ?

I need a script that can handle the following tasks. Take user data from my database and fill in and submit / post data to forms located on third part websites.: So I want to know if is it hard to create or do somebody knows if does exists some script for mass form submissions in PHP -Javascript-Ajax ? I run Dancers & Hostess & Model j...

AJAX POST problems with CKFinder

We're using CKFinder for one of our sites, which has been working fine for us until we moved to a new dedicated server (which is similar but not exactly the same as the old server). Now we cant upload, the AJAX request simply never finishes. From monitoring it in Firebug it attempts to POST to here: http://www.site.com/temp/ckfinder/cor...

Facebook Connect icon isn't showing up in Internet Explorer

I'm working on a site that is using Facebook Connect and recently made some changes so that the main pages are cached and if you are not logged in (checked with an ajax call) it loads the Facebook Connect javascript and renders the connect button into the page. This works perfectly everywhere except Internet Explorer 7 and 8. The weird p...

ASP.NET GridView and UpdatePanel

I have a GridView, inside a UserControl, inside an UpdatePanel on a page. There's a button in the GridView which needs to fire a postback. What happens is: User clicks button -> RowCommand Fires -> Custom event is raised on UserControl -> Page detects this and changes the active view index for a multiview and also the page title and som...

Combine Jquery script with AJAX

Im trying to add a Jquery validation script to a form plugin for wordpress. The plugin is written in Ajax and while it does validate the input fields, its not very pretty. That is why I am trying to use Jquery to validate the fields before Ajax hands the data over to the database. What I need to happen is this: When a user clicks submi...

Text area with autosuggest and removal functionality

I am working on a simple messaging system. For composing the message, I provide a text area. This text area should have an autosuggest functionality and also something like a "remove" button. Can you tell me how to implement this sort of functionality? I think there is a jQuery plugin to accomplish something like this, but I can't recal...

AJAX Post of JavaScript String Array to JsonResult as List<string> Always Returns Null?

I'm trying to build up a string array in JavaScript and get the results in a string list in the action method. Below is what my JavaScript looks like. I'm using jQuery 1.4.2. The problem is my List in the action method is always showing NULL. Will a JavaScript string array not map correct to a string list in C#? var test = ['tes...

Google Website Optimizer: track AJAX

I am tracking AJAX goals in Google Analytics with no problems. But I would like to use Google Website Optimizer to see what buttons or headlines get the most leads in our newsletter subscription form. Since a new subscription only triggers AJAX/Javascript, I cannot add a separate success/thankyou.html page to track in Google Website Ana...

ajax control usage in a given scenario

Hi, on pageload a panel must not be visible, onclick on a button some process will go on, that time i need to show the process in some notation and once the process is over i need to display the panel Please help me. ...

Is there some smart way of customizing ajax message text in jQuery?

I have tons of ajax components on this booking engine. I need to customize the text inside of the modal for each of the components to suite. I added: $('#loader').bind('ajaxStart', function() { $(this).show().addClass('modalOpen'); }).bind('ajaxComplete', function() { $(this).removeClass('modalOpen').hide() ...

Issue with jQuery ajax post (working with get). error 12031

hi, UPDATE: set the mimetype to application/json and it works. In the website I'm working on (http://piem.org:8000/) I've got an issue with an ajax post request. Every time the search button is clicked or the google maps 'idle' is triggered I send a request to get some data. While the request works as expected in most cases, it returns...

JQuery Post-Request question - FF doesn't get the result of the referenced php page

Dear community, I just want to have my question posted here but just from the beginning: For a personal web project I use PHP + JQuery. Now I got stuck when I try to use the ajax posting method to send data to another php-page. I planned to have some navigational elements like next + previous on the bottom of the page by saving the us...

ASP.NET MVC - Refresh PartialView when DropDownList changed

I have a search form that is an Ajax form. Within the form is a DropDownList that, when changed, should refresh a PartialView within the Ajax form (via a GET request). However, I'm not sure what to do in order to refresh the PartialView after I get back my results via the GET request. Search.aspx <%@ Page Title="" Language="VB" MasterP...

Flexigrid built with jquery: does it support right click row functionality?

Flexigrid is awesome but does anyone know if it supports a right click event on a row? ...

custom form with Drupal - CCK and simple module - what next?

I have mastered creating custom data types and adding fields with CCK. Then I created and deployed a custom module with _form and _validate and _submit hooks. I am not happy with the amount of massaging required with css and permissions to make the form usable, but this is not my question. Now I would like to create a more sophistica...

rich:tabPanel and problems when filed has required="true"

Hello, Let's consider following, simplified example: we have 2 tabs withing , each tab has and at the moment we want to switch from one tab to another, and the inputText is empty (we dont want to submit value from it anyway, we want to go to another tab) we get "Validation Error: Value is required." the example code: <!DOCTYPE html...

Cakephp 1.3 JsHelper for AjaxHelper

Hi: I'm start using cakephp and i made a demo app using AjaxHelper $ajax->link('title', 'url', array('update' => 'mydiv')) Now i want to migrate that to cakephp 1.3 and AjaxHelper is deprecated on cake 1.3 and will be removed, so i want to accomplish the same with JsHelper which is replacing the functionality of AjaxHelper and Javascr...