The client-scripting tag has no wiki summary.
0
votes
2answers
2k views
Devexpress ASPxCallback client side e.Result undefined
I call cb.PerformCallback(); it looks working correctly but I can not get the e.result.
it alerts "undefined".
I can both see "started" and "ended" alerts.
ASPxCallback cb = new ASPxCallback();
...
1
vote
3answers
792 views
How is callback with arguments executed?
I got acquainted with jQuery a few days back and am beginning to realize the little magic it can do.
I am curious to know how exactly a callback with arguments is executed in jQuery i.e. what is the ...
1
vote
3answers
1k views
Generate HTML Table Client Side
(ASP.NET Web Application) I'd like to create a page which allows the user to build an HTML table. The user will be provided with the following controls: a textbox used to define the amount of rows in ...
8
votes
9answers
703 views
How do you avoid duplication of validation on the server and client-side?
How do you avoid duplication of validation on the server and client-side? Is there a web programming platform that generates one from the other, so I don't have to keep the two in sync?
0
votes
4answers
1k views
Data processing in HTML without server code (using just Javascript)
I was just wondering whether there is some way to do this:
I have a form in a web page, after the user submits the form, the page is redirected to another static HTML page.
Is there any way to ...
0
votes
3answers
4k views
Access DOM elements after ajax.load
I am inserting the HTML response from an AJAX call into my page, but then when I try to access those elements after they have been created, it fails..
This is how i retrieve and insert the HTML:
...
8
votes
10answers
3k views
Why doesn't my form post when I disable the submit button to prevent double clicking?
Like every other web developer on the planet, I have an issue with users double clicking the submit button on my forms. My understanding is that the conventional way to handle this issue, is to ...
0
votes
1answer
2k views
Override members on a built-in JavaScript object
I would like to override the default behavior of the offsetParent member of all html elements. I would like to do something like this if it's possible:
// For <div id="foo"></div>
var ...
0
votes
1answer
234 views
How can I debug JS code in CSSEdit?
Yeah, sounds silly but I'm a designers and the site I'm working on is not working in CSSEdit. Which is bad for me, very bad. The site has a massive JS/Ajax client and works in all browsers, IE, ...
24
votes
5answers
75k views
Sending emails with Javascript
This is a little confusing to explain, so bear with me here...
I want to set up a system where a user can send templated emails via my website, except it's not actually sent using my server - it ...
1
vote
3answers
442 views
ASP.NET AJAX: How to get a client instance created with the $create method?
Using the client-side ASP.NET AJAX library, I have created an instance of a client component with the $create shortcut-method (http://msdn.microsoft.com/da-dk/library/bb397487(en-us).aspx). The object ...
59
votes
15answers
40k views
What are alternatives to ExtJS? [closed]
So what I'm looking for is a javascript framework I can use that has several UI controls. I have taken a look at jQuery but those controls are very basic compared to ExtJS. Are there any other ...
4
votes
8answers
11k views
XSL relative path for xsl:import or xsl:include
I am trying to use VBScript to do an XSLT transform on an XML object.
The XSL file I'm translating includes the <xsl:import href="script.xsl"/> directive. If I use the absolute URL ...
5
votes
4answers
17k views
What's a good bit of JS or JQuery for horizontally scrolling news ticker
I am looking for a little bit of JQuery or JS that allows me to produce a horizontally scrolling "news ticker" list.
The produced HTML needs to be standards compliant as well.
I have tried liScroll ...
3
votes
5answers
2k views
Best way to fix CSS/JS drop-down problem in IE7 when page includes Google Map
I have a page using < ul > lists for navigation (Javascript changes the styling to display or not on mouseover).
This is working fine for me except in IE6 and IE7 when I have a Google Map on the ...
6
votes
4answers
3k views
Removing elements with Array.map in JavaScript
I would like to filter an array of items by using the map() function. Here is a code snippet:
var filteredItems = items.map(function(item)
{
if( ...some condition... )
{
return item;
...
3
votes
5answers
576 views
Reference that lists available JavaScript events?
I'm aware of things like "onchange", "onmousedown" and "onmouseup" but is there a good reference somewhere that lists all of them complete with possibly a list of the elements that they cover?
16
votes
5answers
27k views
Getting the text from a drop-down box
This gets the value of whatever is selected in my dropdown menu.
document.getElementById('newSkill').value
I cannot however find out what property to go after for the text that's currently ...