I'm working with Extjs 2.2.1 with Alfresco 3.2 enterprise.
I would like to update the ticket that handles authentication to the alfresco server on components that have been loaded during login. This ticket expires after a set time and this is why I will need to update the ticket.
Options that do not seem viable for me(but please let...
I'm writing a plugin for my wordpress site and am having trouble understanding the jquery ajax requests. In a nutshell, I am trying to get some user meta data loaded when the page loads.
So in my javascript file I have a line:
$.getJSON("http://mysite.co.uk/wp-content/plugins/myplugin/ajax/ajax.php?action=test", function(json) { // do...
I am experimenting with the new Safari 5 extensions JS API and I am having an issue right from the ground up, I want to use an XMLHttpRequest to get an RSS feed from a website however upon the .send() it immediatly kicks off errors:
Failed to load resource: cancelled
Then looking at the XMLHttpRequest object is says in status: Error: I...
We are developing a social website and looking to implement video/audio chat for users (people a user is friends with). Most of the talk from the tech team was to use flash. But I don't want users to install anything. Can video/audio/conferencing be done purely in AJAX? Either develop it from scratch or use open source frameworks if any?...
I am using ajax to insert a series of informational blocks via a loop. The blocks each have a title, and long description in them that is hidden by default. They function like an accordion, only showing one description at a time amongst all of the blocks.
The problem is opening the description on the first block. I would REALLY like t...
Using the jQuery $.post function, if you send a null value, it arrives at the server side as "null". Example:
Javascript:
$.post('test.php', { foo : null });
PHP:
var_dump($_POST['foo']); // string(4) "null"
I understand why this is so, but was wondering the best way to work around the limitation? Should you:
Loop through all th...
I'm writing a service (say, service.com) that provides a REST API to external apps running inside of IFrames. (These apps are hosted from domains outside the service.com).
I'm planning a javascript client library for the apps to make pure-javascript requests to the service.com REST API -- basically using postMessage and some ad-hoc en...
Can some one provide step by step tutorial how to do ASP.NET 4 AJAX data binding
...
Hi,
I need a little help to figure out why the following code does not work on google chrome 5/windows xp. It works well on all other browsers (IE, FF, Safri, Opera etc). Can someone shed some light around this?
/* AJAX Request */
jq("#a-post-request").unbind("click").bind("click", function(e){
//jq("#loading").css({"displ...
I'm currently implementing AJAX-based web part which displays search result. This search result has user names and opposite to each name I'm rendering the OCS presence indicator. This indicator works fine in IE6 but I can't get it to work in IE7/8.
Basically the problem in IE7/8 is that OCS is rendered but when you mouse over it nothing...
How do you display AJAX paginated data using Zend_Framework?
Are there any good examples using paginationControl(), ajaxLink() and ajaxContext() helpers?
Would you share your implementation?
...
Hi everyone,
I have a small survey, but when i submit it says that the msg is null, i don't see where is my error.
If you could help me i apreciate it.
Thank you
My Form with Jquery and Ajax Function
<!DOCTYPE HTML>
<hmtl lang="pt-PT">
<head>
<title>Formulário</title>
<script type="text...
Please see the jQuery code below, it used to paginate some search results
paginate: function() {
$("#wishlistPage .results").html("<div id='snakeSpinner'><img src='"+BASE_URL+"images/snake.gif' title='Loading' alt='...'/></div>");
var url = BASE_URL+"wishlist/wishlist_paginated/";
$.ajax({
type: "GET"...
Hi,
I have a file on server which is viewed by the client asynchronously as and when required .
The file is going to get modified on server side . Also updates are reflected in browser also
In my views.py the code is :
def showfiledata(request):
somecommand ="ls -l > /home/tazim/webexample/templates/tmp.txt"
with open("/h...
I'm looking for a Toolbox for a Website that can do the following things:
Write Text in a Text Editor (change its color/font size/font) and display it over an product image (plus drag&drop, do rotation). As Texteditor i could use TinyMCE but how to rotate/drag&drop?
the same with images (upload a logo, display it over an existing produ...
I've got two servers running jsp and php. I'd like the PHP page to call the JSP page for getting an output. I tried using simple Ajax and Jquery-Ajax, it doesn't seem to work. Why?
...
Can a page have multiple ScriptManagers? If yes then under what condition will it be required ?
...
Is there a schedule control in asp.net.
What I need:
column display: users
Rows display : months and days.
On clicking cell will open a popup
In popup we can :
- select a status in a dropdownList,
- if the status is "be close" => two calendars ( date start and end)
- then apply a color for the selected period.
I know I ...
Hi,
I have a simple ASP.NET Web Service
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.Web.Script.Services.ScriptService]
public class Service : System.Web.Services.WebService
{
public Service () {
}
[WebMethod]
public string SetName(string name) {...
I have a file upload button on my MVC view. After the file is uploaded, my FileList partial view on the page should refresh.
I tried to upload with Ajax.BeginForm(), but have discovered that Ajax will not submit file data.
I've got the file upload working now by using the jQuery Form plugin, which lets you ajaxify the normal Html.Begi...