Gmail Ajax interface
Hi all, I would like to create something similar to Gmails interface. Especially the way contacts are managed is very interesting. I'm not a Javascript guru, but know my way around jQuery. Thanks! ...
Hi all, I would like to create something similar to Gmails interface. Especially the way contacts are managed is very interesting. I'm not a Javascript guru, but know my way around jQuery. Thanks! ...
I've seen in quite a few examples of asp.net ajax client side script the following: function fHelloWorld(source, eventArgs) { } If I run an alert on the source it's returned as an object. Can I use this to access what called the function? And if so how? i've tried things like source.id; Without luck ...
On the developement machine my website is working fine but I am getting javascript 'Sys' is undefined error on hosting server and my AJAX is not working. I have make a sample page and scriptmanager on it, Please look into this. http://nexapps.com/default2.aspx button and textbox is in AJAX updatepanel, but when hit to button page is fu...
I am probably making some silly mistake but I am newer to the world of Jquery and am looking for some help with this issue. I have a form that I need to check/validate two dates once they change their values. Once they change I had an Ajax call that loaded a page "checkdates.php" and passed in two bits of data. The Date that changed ...
I need to provide a feature such that the user is able to upload a csv file.Once the uploading is done I need to retrieve each value and show it on a grid which is implemented using far point(http://www.fpoint.com/products/spread/spread.aspx).But all this has to be done without the page being refreshed.I use asp.net 2.0 & Ajax Pro.Rememb...
How do you dynamically pass parameter/control to contextKey? <asp:TextBox ID="tbA" runat="server" autocomplete="off"></asp:TextBox> <asp:TextBox ID="tbB" runat="server">hello</asp:TextBox> <asp:TextBox ID="tbC" runat="server">world</asp:TextBox> <cc1:AutoCompleteExtender ID="aceListA" ServiceMethod="listA" ServicePath="WebService.asm...
I always have to check each and every browser to see if my website would work. Is there a website where I can check it with? Update: I don't really want just screenshots (which what browsershots do), I want to actually test the posting of my script. ...
I am stumped, I am tossing out my code and I need help with a cross browser ajax submit. Can anyone PLEASE give me a simple working ajax submit script for updating mysql? The one I have is all bad. Works in FF and Safarai (iphone), but in IE7, it has caching problem and in IE8 it doesn't even submit. ...
jquery- Definitely a great choice for DOM manipulation, and have lot of libraries. extjs 3.0- http://www.extjs.com they mentioned many big companies also using it. I seen their interface all great! raxan framework- http://raxanpdi.com Guys, any idea on this? Sounds good too. YUI? I heard that YUI is less troublesome than extjs, more s...
hello everyone, my first time posting here. My question is as follow: I need to build a horizontal scroller like the one in Itunes or like the one that the macs uses in the finder window. http://www.flashcomponents.net/upload/samples/4250/index.html?full=true The client, however wants this to be fed from an xml file and to display html...
Hi Friends, I need to know, is it possible to find a file in web server is updated using javascript. In my java application i am updating one file using java if any error occurs say, like logger.. By using javascript i need to read that file immediately if any updates occured and show it in a web page... First i need to kno...
I've implemented block UI as this request can take a little, time when the ajax request starts everything works as expected. But when the ajax request finishes and the msgbox is shown, the UI doesn't unblock! Any ideas? I'm using IE8. $().ajaxStart($.blockUI); $().ajaxStop($.unblockUI); function ChangeCompanyState(companyId, stat...
I have a bunch of text boxes and a save button to update something. When I click "Save" I have code that determines whether they are correctly filled in, in the code behind file. If they are not correctly filled in, I want to display an error message in the form of an alert. What is the best way to do this? Pressing the button obviousl...
I upgraded from Struts 2.0.6 to 2.1.6 and converted all my Ajax themes to plugins. Everything works except the pathing has changed from relative to absolute. For example, here is the rendered HTML before upgrade: <script type="text/javascript" src="../struts/simple/dojoRequire.js"></script> And here it is after upgrade: <script lan...
I have a java web application running on WebSphere 7. The application uses form authentication method and part of the application accesses some protected resources using ajax requests. However, when the user's session expires, I am getting the login page in place of the content that is supposed to be refreshed by the ajax request. Is t...
If I do something like map = new GMap2(document.getElementById(mapCanvas)); directions = new GDirections(map); directions.load("SOME DIRECTIONS HERE"); Under firefox on LInux it works great! Under safari it displays the map but not the directions. What gives? ...
I know this is a bad title for my question but what i am trying to do is reply to Autocomplete http://docs.jquery.com/Plugins/Autocomplete#API%5FDocumentation Instead of getting many elements i only receive "Array". I know this is obviously wrong bc of the way echo works but how do i echo in such a way this autocomplete works? mydoc....
I'm using xVal with MVC and jquery validate. It all works nicely, until i get to my custom validator that does an ajax call. the ajax call returns the right value, according to the firbug Net Tab. But something is going wrong and I can't figure it out. Here's the javascript code: function CheckEmail() { var res; $.a...
I'm new with JQuery, Ajax, JavaScript I have a problem with JQuery star-rating-plugin. I used it in some pages and it works very well. However when I used in an Ajax page, it did not behave the same. When the page is reloaded, nothing more is shown. The input are hidden, like before, but the div's doesn't appear. I have this code wh...
I am looking for a searchable multiple select javascript widget that can handle filtering large amounts of server-side data for a 1-n relationship. For instance I have a category and I want to be able to filter through an unassociated list of products and attach them to the category in a user friendly way. I don't want the unassociated...