Sponsored White Papers, Webcasts, and Downloads
TechRepublic Resources
- Programmatically invoke onChange event
- I am using a popup calendar to populate an input field. When the contents of this field change I need the onChange event to fire so that I can perform further updates. The onChange event "onChange=myFunction" will fire if I manually type the date into the field but not if...
- Tags: langdale_pikes@..., onChange event, onChange
- Discussion threads 2007-08-28
- need custom javascript help
- I need to be able to enable/disable radio buttons based on a specific selection from a dropdown menu & not an onChange event. can anyone help???Hi,you can either do it on onchange or onclick, but can make decision in these functions to only enable/disable radio buttons for some specific values.I...
- Tags: JavaScript, onChange, programming, webdevinLV
- Q&A 2005-03-03
Additional Resources
- Using PHP, MySQL and Javascript.. please help!
- OK.. so I developing in PHP using a MySQL database, but I think I need Javascript to enable the following.I want a page with 3 dropdowns, the second dropdown is dependant on the first, and the third on the second. The options in the dropdown are found in my...
- Tags: Scripting languages, Databases, helenmunzer@..., JavaScript, PHP, MySQL, AJAX
- Discussion threads 2007-10-17
- visual basic 6.0
- MS Access as back end & vb 6.0 as front endhow to select particular date record using "dtpicker".There's a few ways of doing thatOne is to pick up the dtpicker's onchange event, then build a query based on the new date.You probably want to check whether the control is dropped...
- Tags: adit8585@...
- Discussion threads 2007-02-26
- Ajax Form Validation Using Spring and DWR
- Using the jPetStore sample application, this paper discusses and demonstrates a design for a generic and reusable Ajax form validation solution. Using existing open source projects and leveraging the applications validation logic, the development time and complexity required to implement this solution into the applications is minimal. After setting up...
- Tags: AJAX, Internet, Software/Web Development, Web Development, Web 2.0
- White papers 2007-02-08
- How can i get the values of a dropdown list which is populated using AJAX
- Hi,I have a gridview in which there are 5 template columns each containing a dropdownlist. When the aspx page is loaded first three of the dropdownlist are populated from database. Then I have onchange javascript event on each of the first three dropdownlist. when user selects all of the...
- Tags: smart_am80@..., dropdownlist, AJAX
- Discussion threads 2007-11-05
- writing program in wdk
- Hi iam new to Documentum i have wrote helloworld component.my doubt is iam using and in java classpublic void changeTextText txtNamepublic void onPress(Button btClick, ArgumentList args)iam using the above methodsas these are userdefined methods how we know that only these parameters have to be passed as inputs.is anywhere...
- Tags: budida.raveendra@...
- Discussion threads 2007-08-21
- Auto-entry
- I have a table showing suburbs/towns with their associated zip/post code.In a data entry form how do I get the correct zip/post code to be automatically entered when the user enters the suburb/town?How is the table stored? File or Database? Do you use some technology like Java, ASP, PHP,...?What is...
- Tags: Storage, Databases, Scripting languages, Microsoft Office, database
- Q&A 2006-06-16
- Check for JavaScript input
- By Emily A. Vander VeerBecause JavaScript is object-oriented, it treats every HTML form element--each button, selection box, text field, and even the form itself--as a separate object containing its very own data. With JavaScript, you can examine any HTML object's data right on the user's machine and make decisions based...
- Tags: Scripting languages, aCharExists, JavaScript, userEntry
- Technical articles 2003-10-01
- Learn how to process form data
- By Emily A. Vander VeerOnce you've verified that the user has entered valid data, it's time to do something with it. In JavaScript, that's fairly easy.We'll calculate the total adoption fee with the following function:function calcTotal document.orderForm.totalPrice.value = (document.orderForm.numberOrdered.value* 15.99);}Simple, eh? The calcTotal function simply takes the number supplied by the user...
- Tags: Scripting languages, Emily A. Vander Veer, calcTotal, orderPlaced, JavaScript
- Technical articles 2003-10-01
- Update DTC list boxes with this client-side solution
- Although DTCs offer an easy way to modify ASP pages, the lack of flexibility can cause problems. Follow this easy client-side technique to modify a list box's contents when they're dependent on the selection in another list box.On my current assignment, a problem has cropped up three times since the...
- Tags: Scripting languages, Edmond Woychowsky, Design-Time Control, list box
- Technical articles 2002-08-21
- Find out how to look for a number
- By Emily A. Vander VeerNow we know whether the user typed in a character. But did he or she enter numbers or letters? Most of the time, it's not enough to know that the user simply entered a character. Instead, you'll want to know that the user entered the correct...
- Tags: Scripting languages, first digit, parseFloat, JavaScript, isANumber, numberOrdered
- Technical articles 2003-10-01
- Introduce MVC model in PHP code
- Introduce MVC model in PHP codeHi Pals,Can anyone provide a limelight to introduce MVC design pattern in PHP code which goes with HTML as well.Thanx in Advance.Here is a sample code. How to introduce the MVC Pattern in this code? Do chage this code & Introduce MVC and reply back...
- Tags: HotelAmenitiesMaster, HotelAmenityID, MVC, PHP, Pno, PropertyNo=$pid, SELECT, vaishnavis@...
- Discussion threads 2004-12-23
- Stupid Web Tricks: Load new pages without clicking Go
- Click here for our complete list of Stupid Web Tricks.By Lauren Guzak and Patrick Joseph(1/26/99, updated 6/22/01)This trick is a good way to avoid cluttering up your pages with ugly JavaScript-generated buttons. Say that you want to put a list of links in a scrollable box as a nice, space-saving...
- Tags: Scripting languages, Web browsers, OPTION VALUE
- Technical articles 2003-10-06
- Explore the capabilities of Mozilla's XML proxy class
- Mozilla's answer to Internet Explorer's XMLHTTP component is the XMLHttpRequest object, which behaves basically like the XMLHTTP component. Check out these code examples that demonstrate how easy it is to show off Mozilla's XML capabilities. IE extends its functionality by allowing developers to use safe ActiveX components within...
- Tags: Microsoft Internet Explorer, Mozilla Corp., XML-Data, XMLHTTP, XML, Phillip Perkins, XMLHTTP component, server, Web Development Zone Newsletter, Listing B, XMLHttpRequest, Software/Web Development, Web Development
- Technical articles 2005-06-13
- Make XML data islands work in Mozilla
- Recently, I wrote an article on the virtues of XML data islands and, although the article was well received, a number of readers pointed out that XML data islands work only with Microsoft Internet Explorer. Because of this platform limitation and possibly because data islands were developed by Microsoft, XML...
- Tags: JavaScript, Edmond Woychowsky, XML, HTML, XML node, XML-Data, XML-Data Islands, Mozilla Corp.
- Technical articles 2003-05-15
- Auto file field need additional help
- Hello,I have a form that enters information into a text field when an item is selected form a dropdown field.My question isI want to enter the price into different text field based what is selected from the drop down field.Below is what I have completed. I just cannot figure out...
- Tags: artty
- Discussion threads 2007-11-04
- Creating browser-independent event handlers requires careful planning
- When developing applications in a cross-browser environment, you must take care to insure that the user interface isn't dependent on an event that is unique to a specific browser. The wide range of interpretations of event standards adds an additional degree of difficulty. It would be embarrassing to explain to...
- Tags: Mice, Web browsers, Keyboards, Edmond Woychowsky, mouse, Mouse pointer, Web browser, pointer
- Technical articles 2003-07-01
- Take advantage of advanced JavaScript functions
- JavaScript functions are a convenient way to package sequences of instructions designed to perform specific tasks or to act as constructors for classes. You can find oodles of documentation on the Internet about using basic functions, but just try to find some info on advanced features of JavaScript functions. So...
- Tags: Scripting languages, Edmond Woychowsky, JavaScript, JavaScript function, constructor
- Technical articles 2003-01-02
- .NET offers client scripting in a server-centric environment
- .NET promises a new development paradigm, but it still relies on many proven Web workarounds. Most notable is the use of hidden controls to facilitate client-side scripting. Find out more about these routines and other mechanisms to control browser behavior.The .NET event model enables sophisticated server-based processing, but it leaves...
- Tags: .NET, Application servers, Middleware, Servers, F. Godfrey Baker, Microsoft .NET, server, client script, Web browser
- Technical articles 2002-12-16
- << Previous
- page 1 of 1
- Next >>