18
Thu, Apr
5 New Articles

Show Good Form

Web Languages
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

One of the essential skills in today’s e-commerce developer’s toolbox is JavaScript. JavaScript, originally developed by Netscape and released as LiveWire, has undergone a few transformations since its inception, even finding its way to the server side of e- commerce applications. Probably more often than not, however, it’s still used primarily on the client or, more specifically, with the browser. I’ll show you how to use it for one of the more common tasks in e-commerce development: form validation.

A Short History Lesson

JavaScript is a common term to most, but some may still be wondering how JScript or even ECMAScript fit in the scheme of things. By now, you should be painfully aware of the battles between Microsoft and Netscape. Everybody knows about the browser wars, but a lesser-known battle within that war is over scripting. Shortly after Netscape developed JavaScript, it was turned over to the European Computer Manufacturers Association (ECMA), an international standards organization. ECMA issued its standard, commonly known as ECMA-262, which has the title of ECMAScript language specification. Both JScript and JavaScript have arisen from this specification. ECMA-262 attempts to solve the matter of cross-browser compatibility, but this being the real world, there are obstacles to overcome. Microsoft’s standard practice of “extending” technologies means that JScript is ECMA-262-compliant and then some, adding a few more features here and there. Additionally, Netscape runs a little behind when it comes to keeping Navigator in pace with ECMA-262, although its JavaScript Version 1.3 claims full compliance.

JavaScript can reside in a source file external to the HTML page using the source, or it can be embedded directly into the HTML. When a JavaScript-enabled browser comes across a Web page that has JavaScript in it, the browser activates its scripting engine and begins to execute, or interpret, the JavaScript code. Without poring through the details of the ECMA standard, it’s hard to say which browser complies with the standard. Without going into too much detail about the ECMA-262 document (which can be downloaded at www.ecma.ch), I’ll leave it up to you to read the specification and see how it leaves the two scripting languages plenty of wiggle room, especially concerning the event model. Nevertheless, both scripting languages claim that they are in full compliance with ECMA- 262; however, there are still some instances where certain object properties and methods


work in either Navigator or Internet Explorer but not both. That is to say, cross-browser JavaScript is still the burden of the developer.

Fortunately, there is a way within JavaScript to detect the browser and version by which the developer will want to condition the processing of the script. For example, the following code snippet will detect your browser’s name and version. It works for all browsers despite using the navigator object.

var browser = navigator.appName;
var version = navigator.appVersion;

JavaScript for Client-side Validation

Among the many things you can use JavaScript for is to validate data that a user inputs into a form before that data gets sent across the wire to whatever you have waiting for it on the server. This use is probably the most common use of JavaScript in Web application programming. Your server-side component may be a Java servlet, an Active Server Page (ASP), or a CGI script. Whatever the component is, you don’t want it to choke, gasp, and wheeze by sending it data that it isn’t prepared to handle. JavaScript is an excellent choice to handle this task because all the validation is done on the client, i.e., the browser. Validation done through the browser gives far greater performance than having to send that form data to the server, having some sort of server-side data validation, and then having the server send back to the browser any errors that may have occurred. Sometimes this situation is unavoidable, and I’ll talk about that later.

There are several aspects to form validation, and I’ll cover them one-by-one. I’ll start out by discussing a little of what’s known as the event model. Every browser has its event model, which means that each browser has a way to let JavaScript know what event is taking place. For example, when a user presses a key on the keyboard, the onKeyPress event takes place, and if your JavaScript code does some processing on the onKeyPress event, it will be executed at that time. A major event for form validation is the onSubmit event, which is what normally kicks off form validation. The onSubmit event typically happens when a user presses an HTML button, created by the tag, that has Submit as the value for the tag’s Type parameter.

Common tasks involved with form validation are checking for missing values in required fields, checking the format of the data, providing the user with drop-down lists of valid data to enforce validity, or prompting the user for valid data á la the F4 key in OS/400.

Checking for missing values in required fields is relatively easy. Assuming a form called myForm was submitted as a form to be validated by a script, the way to check if FieldA contained any value at all is as follows:

if(myForm.FieldA.length == 0)

.. processing for missing data

Once a field that has data in it is passed to your validation script, you’ll probably want to make sure it’s in the format you want before handing it off to the server. The best example of this is validating dates. Of course, you’ll want to make sure that your dates are valid, that they’re in the correct month-day-year sequence, and that they have a valid date separator. That’s actually a lot to check for most developers, but since many of you have plenty of experience in RPG III, I’m sure you’re not scared to perform this basic but essential task.

Figure 1 is a simple HTML form with a collection of required fields to be validated. I’ve included a downloadable example of Figure 1 at www.midrangecomputing. com/mc. Look at the drop-down list of states. You’ll notice that the first value in the list is a text value: Select a state. By default, it is the value that is selected when the form first loads. You want to make sure that a user selects a value in the drop-down list other than the first


value, which is commonly a request to select a value, as in this example. To validate this field, you’ll use the following code:

var state = form.state.selectedIndex;
. . .

if (state == 0)

{

errors[count++] = “State error: ” +

“ Must select a state. ”;

}

The variable called form is the object that is passed to the validation script. A property of any form is a field name, in this case, State. Because State is a drop-down list created by the HTML tag

Book Reviews

Resource Center

  • SB Profound WC 5536 Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application. You can find Part 1 here. In Part 2 of our free Node.js Webinar Series, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Brian will briefly discuss the different tools available, and demonstrate his preferred setup for Node development on IBM i or any platform. Attend this webinar to learn:

  • SB Profound WP 5539More than ever, there is a demand for IT to deliver innovation. Your IBM i has been an essential part of your business operations for years. However, your organization may struggle to maintain the current system and implement new projects. The thousands of customers we've worked with and surveyed state that expectations regarding the digital footprint and vision of the company are not aligned with the current IT environment.

  • SB HelpSystems ROBOT Generic IBM announced the E1080 servers using the latest Power10 processor in September 2021. The most powerful processor from IBM to date, Power10 is designed to handle the demands of doing business in today’s high-tech atmosphere, including running cloud applications, supporting big data, and managing AI workloads. But what does Power10 mean for your data center? In this recorded webinar, IBMers Dan Sundt and Dylan Boday join IBM Power Champion Tom Huntington for a discussion on why Power10 technology is the right strategic investment if you run IBM i, AIX, or Linux. In this action-packed hour, Tom will share trends from the IBM i and AIX user communities while Dan and Dylan dive into the tech specs for key hardware, including:

  • Magic MarkTRY the one package that solves all your document design and printing challenges on all your platforms. Produce bar code labels, electronic forms, ad hoc reports, and RFID tags – without programming! MarkMagic is the only document design and print solution that combines report writing, WYSIWYG label and forms design, and conditional printing in one integrated product. Make sure your data survives when catastrophe hits. Request your trial now!  Request Now.

  • SB HelpSystems ROBOT GenericForms of ransomware has been around for over 30 years, and with more and more organizations suffering attacks each year, it continues to endure. What has made ransomware such a durable threat and what is the best way to combat it? In order to prevent ransomware, organizations must first understand how it works.

  • SB HelpSystems ROBOT GenericIT security is a top priority for businesses around the world, but most IBM i pros don’t know where to begin—and most cybersecurity experts don’t know IBM i. In this session, Robin Tatam explores the business impact of lax IBM i security, the top vulnerabilities putting IBM i at risk, and the steps you can take to protect your organization. If you’re looking to avoid unexpected downtime or corrupted data, you don’t want to miss this session.

  • SB HelpSystems ROBOT GenericCan you trust all of your users all of the time? A typical end user receives 16 malicious emails each month, but only 17 percent of these phishing campaigns are reported to IT. Once an attack is underway, most organizations won’t discover the breach until six months later. A staggering amount of damage can occur in that time. Despite these risks, 93 percent of organizations are leaving their IBM i systems vulnerable to cybercrime. In this on-demand webinar, IBM i security experts Robin Tatam and Sandi Moore will reveal:

  • FORTRA Disaster protection is vital to every business. Yet, it often consists of patched together procedures that are prone to error. From automatic backups to data encryption to media management, Robot automates the routine (yet often complex) tasks of iSeries backup and recovery, saving you time and money and making the process safer and more reliable. Automate your backups with the Robot Backup and Recovery Solution. Key features include:

  • FORTRAManaging messages on your IBM i can be more than a full-time job if you have to do it manually. Messages need a response and resources must be monitored—often over multiple systems and across platforms. How can you be sure you won’t miss important system events? Automate your message center with the Robot Message Management Solution. Key features include:

  • FORTRAThe thought of printing, distributing, and storing iSeries reports manually may reduce you to tears. Paper and labor costs associated with report generation can spiral out of control. Mountains of paper threaten to swamp your files. Robot automates report bursting, distribution, bundling, and archiving, and offers secure, selective online report viewing. Manage your reports with the Robot Report Management Solution. Key features include:

  • FORTRAFor over 30 years, Robot has been a leader in systems management for IBM i. With batch job creation and scheduling at its core, the Robot Job Scheduling Solution reduces the opportunity for human error and helps you maintain service levels, automating even the biggest, most complex runbooks. Manage your job schedule with the Robot Job Scheduling Solution. Key features include:

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • LANSAWhen it comes to creating your business applications, there are hundreds of coding platforms and programming languages to choose from. These options range from very complex traditional programming languages to Low-Code platforms where sometimes no traditional coding experience is needed. Download our whitepaper, The Power of Writing Code in a Low-Code Solution, and:

  • LANSASupply Chain is becoming increasingly complex and unpredictable. From raw materials for manufacturing to food supply chains, the journey from source to production to delivery to consumers is marred with inefficiencies, manual processes, shortages, recalls, counterfeits, and scandals. In this webinar, we discuss how:

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • Profound Logic Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application.

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: