Hi Guys,
Been tearing my hear out with this one. Let me see if I can explain:
I have a SharePoint results page on which I have a Search Results Core WebPart. Now I want to change the parameter in the querystring when I postback the page so that the WebPart returns different results for each parameter e.g. the querystring will be int...
hello,
I've a table in which addition rows can be generatred as per the user need by clicking a javascript function.
Each row has a drop down list, and based on the values of this an AJAX script fetchs some values which has to be displayed in corresponding textfields of the same row..
here is the code for HTML..
<td><div align="cente...
On our own website, it's easy to protect against direct links to our video content by grabbing a token through AJAX and verifying the token through PHP before the file download is started.
However I'm also researching how I could provide an embed feature, like YouTube or vimeo etc., without compromising this security feature.
The probl...
I have a very simple bit of jQuery to retrieve my latest Tweet
$.getJSON("http://twitter.com/statuses/user_timeline/username.json?count=1",
function(data) {
$("#tweet_text").html(data[0].text);
});
This works fine on a simple HTML file on my desktop. However, once the file is accessed from my local...
I have a table of results in an ASP.Net MVC page where the last column is an View Details link. I want to have the user click the View Details link and an AJAX method be called to open the results in floating dialog.
What I am struggling with is how to link the AJAX call to the link in the results table. I was using a link which embedde...
I am using a jQuery jEditable edit-in-place field but when the JSON function returns and I try to return a value from my edit-in-place callback all I get is a flash of
You can see this here...
http://clareshilland.unknowndomain.co.uk/
Hit Ctrl+L to login...
Username: stackoverflow
Password: jquery
Although you can see the script in...
Im using JQUERY + CodeIgniter. I can't seem to get the returned data to display after an ajax call.
Here is my JQUERY:
$.post("<?= site_url('plan/get_conflict') ?>", {
user_id : user_id,
datetime_from : plan_datetime_start,
datetime_to : plan_datetime_end,
json : true
}, function(data) {
alert(data);
}, "j...
I basically have to do a update of a record. I have a set of controls like textbox, list box, radio button etc. Then i have a button on click of which i need to carry all the updated data into mysql database with a ajax request without page refresh.
I am using the php with codeigniter as my serverside code. On client side i am able to ...
I'm using a ScriptManager / ServiceReference to call an ASMX from client side code, just like the Calling Web Services from Client Script in ASP.NET AJAX example.
Is there an easy way to show/hide a loading animation when I'm fetching data from the web service? I could show it when I call the service, and hide it in the callback.
Is t...
I saw in a lot of AjaxControlToolkit.resources.dll for different languages, even mine (Russian) in my bin folder so I guess that's real to change the language of my Ajax Calendar Extender.
<asp:TextBox ID="TextBox4" runat="server" oninit="TextBox4_Init" />
<ajaxToolkit:CalendarExtender...
I call an ajax enabled wcf service method ,
<script type="text/javascript">
function GetEmployee() {
Service.GetEmployeeData('1','5',onGetDataSuccess);
}
function onGetDataSuccess(result) {
Iteratejsondata(result)
}
</script>
and my method is ,
[OperationContract]
public string GetEmplo...
Hi
I run into an interesting problem while was using combos in input form. My form contains combos that get data from json stores.
It works fine when adding new record, but when the form is opened for editing an existing record, sometimes the id appears as selected not its value (eg: there's 5 instead of "apple"). I think it tries to se...
I am trying to get put out a simple site, which would pool the database every few seconds and update the information on the page dynamicly, when theres something new inserted.
I am farily new to ruby, but I understand the whole concept of RJS, link_to_function and soforth. The question is, what is the best way how to implement some kind...
I've already known that there is an interface in UIWebView for object c to call javascript.
And now I have a problem:
After the javascript is finished, there are some result in the javascript, and I want to get it out and use it with object c. Is it possible to get the result from javascript?
...
Hi all, trying to make a page which will recursively call a function until a limit has been reached and then to stop. It uses an ajax query to call an external script (which just echo's "done" for now) howver with neither onSuccess or onFailure triggering i'm finding it hard to find the problem.
Here is the javascript for it. In the hea...
I'm trying to learn some Ajax and MySQL...
Basically, the code that I have right now is similar to: http://www.w3schools.com/PHP/php_ajax_database.asp
I was wondering how should I modify those codes (both html, javascript and php) to create two drop down lists. The first drop list would be used for choosing the Lastname (eg. Swanson) a...
Hi,
I have two dropdown lists with Cascading Dropdown, in the usual fashion:
<asp:DropDownList ID="DropDownListIndustry" runat="server"
DataSourceID="SqlDataSourceIndustries" DataTextField="name" DataValueField="industry_id" AppendDataBoundItems="
<asp:ListItem Text="(Please Select)" Value="-1" />
</asp:DropDownList> &nb...
I got a bug report that I can't duplicate, but ajax-call timeout is the current best guess.
So I'm trying to find out the default value for timeout of a jQuery $.ajax() call. Anybody have an idea? Couldn't find it in jQuery documentation.
Thanks in advance,
Marcus
...
Hi All,
I am trying to post the value of an input box (In this case a imdb link) to my imdbgrabber.php page and have it return the info of that movie into a qtip box.
EDIT: View here http://movieo.no-ip.org/ Hover the images and you will see the error.
Everything works fine until i try and post the variable to the imdbgrabber page. Th...
I'm not sure how best to describe this problem... In short, I want to use object literal to allow me to pass a random amount of variables in any order to a function. Whilst this is not big deal in theory, in my code, this object literal is passed to a second function call on_change.
on_change works comparing an element inner HTML to a s...