I am using asp.net 3.5, and Ajax.dll in my application.
I used ajax.dll, to load a list of itmes, with search options.
After keeping my page as idle for one hour if i click anything which could cause javascript error, its not working, it says {ClassName} is undefined.
Let me explain it,
I have registered a Ajax method,
Utility.Regis...
Hi all,i'm trying to create 3 textfield with CI by using form_input. One is for enter price,one is for enter the desire discount value,the last one is for the discounted price which is calculated from price and discount value..How do i achieve it with CI?Thanks a lot..
...
hi.
in my Application i have text box beside it i have drop down control.
when the user clicks on the drop down . a list of items under the drop down control should be shown. but if user type any value in the text box ( like tom, james, peter). if that value is there in the drop down . i should move the ...
I'm starting to give a little more attention to making my javascript and ajax degrade gracefully. Which is more recommended:
working on incorporating the graceful degradation into your existing code (can be tricky)
or
developing a different sets of pages for the non-js users.
I'm leaning towards the different sets of pages, because...
hello everyone
i have read http://stackoverflow.com/questions/32814/asp-net-validators-inside-an-updatepanel
but i still have this error:
'Page_Validators' is not defined
here is what i have installed on the server (were the errors occur):
.net framework 2.0 service pack 2
.net framework 3.0 service pack 2
.net framework 3.5 service...
Hi,
I'm using jquery and uploadify to upload photos to server. After uploading photos they are added to a div container using ajax. Everything works great except DELETE button. All delete buttons work on page load but those added via ajax don't work. I suppose that's because I defined function that enables image deletion and didn't use '...
hi, i am using ajax combo box control. Here i have items
like
kiran
james
alice
dinesh
prakash
manu
if user type the word like "kushal" as this word is not there in the items of the control this word should not be set in combo box control. but if the word is the...
Following code displays two buttons: AJAX popup and Direct popup. They are supposed to open the same page in a new window. Direct popup calls just window.open() in onclick event. AJAX popup does AJAX call and then in stateChanged() function calls window.open() just in the same way.
Both of them work in FF, but AJAX popup doesn't in IE, ...
I try to integrate the jQuery Autocomplete plugin [1], but doestn't work for me. Here my code:
$('#input').autocomplete(function(term) {
var searchUrl = urlBase + 'tagging/autocomplete/?term=' + term;
$.getJSON(searchUrl, function(jsonData) {
test = jsonData;
console.log(test);
});
});
Th...
I asked at http://stackoverflow.com/questions/1529333/parsing-html-string-with-jquery how I can use jQuery on an html string. That all works, but when I apply it to ajax - it does not work. Here is the code.
<script>
var url = 'moo.html';
$.ajax({
url: url,
success: function ( code )
{
html = $(code);
html.e...
Hi there,
I have some JQuery that uses Ajax to send information back to my controler to be processed
I am doing it like this:
//Define my controls
<%=Html.TextBox("PName", Model.PName, new { id = "pName" })%> ...
....
....
//Get the values from my controls
var param1= $("#pName").val();
....
....
//Define the return URL. Is thi...
Hello - I am using jQuery to do some inline form validation during user registration to prevent form errors after posting by checking to see if:
username is available
email has not already been registered
The idea is to give the user feedback before the form is submitted to prevent frustration. The code is at the bottom.
Question...
I am building a dynamic partial load asp.net page, I would like to use jQuery to call page methods or web service to retrieve the content HTML.
page methods or web service, performance wise, which way is better?
If I call page method, on the server side, does the page go through full lifecycle?
Is there any good resources help me to b...
Hi,
I have an ajaxified .NET webservice that I call from javascript(mootools) on my ASP.NET content page with a Masterpage firstly to check if the user has associated journalists, secondly to delete the user if no journalists are associated.
Both calls to the webservice work, but the onComplete for the second does not in IE8.
Using FF 3...
I got a little problem here guys. I'm trying to implement the following scenario:
1- A user opens the home page and sees a list of other users and clicks to add one to his friend list.
2- I issue an Ajax request to a server resource to validate if the user is logged in, if so, I issue another ajax request to another server resource to ...
I'm really not that good at Javascript and that, so I need another bit of help. I want to be able to do a quick bit of AJAX using PHP then when the ajax response is finished show the response in a div and SLIDE it down nicely.
The basic AJAX side of it is no problem. But I want to be able to have it slide nicely without using any framew...
I am returning a big Json object [ 5000 records and 10 elements per record]
from the controller [asp.net mvc] using Jquery and Ajaxpost. till now I was dealing with just 20 records [testing] and it is working fine. But in production there are 5000 records so i am wondering if browser can handle huge amount of data. Especially IE6. ...
I have a simple select element on my page:
<select id="info_routes" size="10"></select>
This select box gets populated at page load via jquery at document ready:
for (var route in _routes) {
var val = _routes[route].id;
var key = 'route_'+val;
$("<option />").attr({id: key, value: val}).appendTo('#info_routes');
$('#info_...
I am working on the following page.
http://www.ranger.ryerson.ca/library/test/steveDev/testcarousel/test.html
it works in firefox, chrome, and opera, but in IE6,IE7, and Safari (the god forsaken browsers) they all give me "parsererror"
My page uses the jquery XML parser, and the bad browsers dont like it. The troubled code is the foll...
Hi,
I am using VB.NET and Webforms with MS AJAX.
I have a button in an MS AJAX Update Panel. When the page is loaded the button's visibility is set to 'false' declaratively.
After the user has checked a check box (also in the UpdatePanel), I set the button's visiblity to true and it becomes visible as expected.
However, the user has ...