472,959 Members | 1,678 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,959 software developers and data experts.

Array function SPLICE doesn't work with Select->OPTIONS array. JavaScript

Hi,
I have had to invent a work-around to get past what looks like a
JavaScript bug, the malfunctioning Perl-like JavaScript array functions
including SPLICE() and UNSHIFT().

I have boiled it down to a very simple test case which can be
cut-n-pasted into a .html file and viewed in a browser:

================================================== ==========================

<META HTTP-EQUIV="expires" VALUE="Tue, 23 Jun 1998 01:46:05
GMT"><!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"
xml:lang="en-US">
<head>
<title>Weird JavaScript Array Function Malfunction!</title>
<meta name="expires" content="Tue, 23 Jun 1998 01:46:05 GMT" />
<script type="text/javascript">//<![CDATA[

function resort() {
var sortara = new Array;
sortara = document.aceform.sort.options;
var length = sortara.length;
alert("SortAra length = " + sortara.length)
var selidx = document.aceform.sort.selectedIndex;
alert("Selected Index = " + selidx);
var selected = sortara[selidx];
alert("Selected item = " + selected.text);
selected = sortara.splice(selidx, 1); // Remove selected array item.
alert("Selected item = " + selected.text); // Never gets here.
Error.
sortara.unshift(selected); // Insert item at top of array.

}

//]]></script>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"
/>
</head>
<body bgcolor="#B0CEBE">
<form method="post" action="" enctype="multipart/form-data"
name="aceform">
<center>

<table border="2" cellspacing="2" cellpadding="2">
<tr><td><center>Sort</td></tr>
<tr><td align="center">
<select name="sort" size="4" onchange="resort(this)">
<option value="Item1">Item1</option>
<option value="Item2">Item2</option>
<option value="Item3">Item3</option>
<option value="Item4">Item4</option>
</select></td>
</tr>
</table>
</center><div></div></form>
</body>
</html>
================================================== =======================

The intent of this script is to move the selected item to the to of the
menu. What could be simpler? Something similar to the Perl one-liner:
unshift(@array, splice(@array, $selectIndex, 1)); # Move SelIdx item
to top.

In a JavaScript console in Firefox 1.0.6 as well as in Opera and
evilnet explorer, I get the error message, "Error: sortara.splice is
not a function". Sortara is valued with
"document.aceform.sort.options", and options is an array.

The first 3 alerts show exactly what they should. The array length
comes out to 4, the selected item shows 3 if I click on the last item,
and the item description matches my selection, "Item3" if I choose the
last one. The final alert is never reached, but instead the JavaScript
terminates and a new error message (above) is written to the JS
console.

The 'Reilly Rhino book, "JavaScript, The Definitive Guide" documents
the select object's OPTIONS property as, "An ARRAY of option objects
...."

I can only find 3 hits on this in Google. Is this a real JavaScript bug
or am I loosing it?

THX,

BrianP

Sep 17 '05 #1
2 5140


BrianP wrote:

var sortara = new Array;
sortara = document.aceform.sort.options;
var length = sortara.length;
alert("SortAra length = " + sortara.length)
var selidx = document.aceform.sort.selectedIndex;
alert("Selected Index = " + selidx);
var selected = sortara[selidx];
alert("Selected item = " + selected.text);
selected = sortara.splice(selidx, 1); // Remove selected array item. In a JavaScript console in Firefox 1.0.6 as well as in Opera and
evilnet explorer, I get the error message, "Error: sortara.splice is
not a function". Sortara is valued with
"document.aceform.sort.options", and options is an array.


You may think that options is an array but DOM collections are usually
not implemented as JavaScript arrays in current browsers. The options
property of a select gives you a DOM collection and while that has a
length property and some properties you can access with a number index
that does not mean the object is an Array object instance implementing
all methods that native Array object instances have.
So the error message tells you that the DOM object you are trying to
call a 'splice' method on does not have that method.

The W3C DOM specification lists
<http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-30606413>
so in a browser following that specification options implements the
HTMLOptionsCollection interface
<http://www.w3.org/TR/DOM-Level-2-HTML/html.html#HTMLOptionsCollection>
where you have a length property and two methods item and namedItem.
Within ECMAScript implementations of the DOM
<http://www.w3.org/TR/DOM-Level-2-HTML/ecma-script-binding.html> you can
then use
options[index]
instead of
options.item(index)
and
options[name]
instead of
options.namedItem(name)

But that is all the DOM suggests, nothing requiring or suggesting that
there are any methods native JavaScript arrays implement.
--

Martin Honnen
http://JavaScript.FAQTs.com/
Sep 17 '05 #2
BrianP wrote:
Hi,
I have had to invent a work-around to get past what looks like a
JavaScript bug, the malfunctioning Perl-like JavaScript array functions
including SPLICE() and UNSHIFT().

I have boiled it down to a very simple test case which can be
cut-n-pasted into a .html file and viewed in a browser:

================================================== ==========================

<META HTTP-EQUIV="expires" VALUE="Tue, 23 Jun 1998 01:46:05
GMT"><!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"
xml:lang="en-US">
<head>
<title>Weird JavaScript Array Function Malfunction!</title>
<meta name="expires" content="Tue, 23 Jun 1998 01:46:05 GMT" />
<script type="text/javascript">//<![CDATA[

function resort() {
var sortara = new Array;
sortara = document.aceform.sort.options;
var length = sortara.length;
alert("SortAra length = " + sortara.length)
var selidx = document.aceform.sort.selectedIndex;
alert("Selected Index = " + selidx);
var selected = sortara[selidx];
alert("Selected item = " + selected.text);
selected = sortara.splice(selidx, 1); // Remove selected array item.
alert("Selected item = " + selected.text); // Never gets here.
Error.
sortara.unshift(selected); // Insert item at top of array.

}

//]]></script>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"
/>
</head>
<body bgcolor="#B0CEBE">
<form method="post" action="" enctype="multipart/form-data"
name="aceform">
<center>

<table border="2" cellspacing="2" cellpadding="2">
<tr><td><center>Sort</td></tr>
<tr><td align="center">
<select name="sort" size="4" onchange="resort(this)">
<option value="Item1">Item1</option>
<option value="Item2">Item2</option>
<option value="Item3">Item3</option>
<option value="Item4">Item4</option>
</select></td>
</tr>
</table>
</center><div></div></form>
</body>
</html>
================================================== =======================

The intent of this script is to move the selected item to the to of the
menu. What could be simpler? Something similar to the Perl one-liner:
unshift(@array, splice(@array, $selectIndex, 1)); # Move SelIdx item
to top.

In a JavaScript console in Firefox 1.0.6 as well as in Opera and
evilnet explorer, I get the error message, "Error: sortara.splice is
not a function". Sortara is valued with
"document.aceform.sort.options", and options is an array.

The first 3 alerts show exactly what they should. The array length
comes out to 4, the selected item shows 3 if I click on the last item,
and the item description matches my selection, "Item3" if I choose the
last one. The final alert is never reached, but instead the JavaScript
terminates and a new error message (above) is written to the JS
console.

The 'Reilly Rhino book, "JavaScript, The Definitive Guide" documents
the select object's OPTIONS property as, "An ARRAY of option objects
..."


As Martin said, element collections are not arrays.

If it helps, here's a thread here that shows how to put references to
the options into an array. Once you've done that you can use the array
methods on the array of references then re-build the select using just
the options that are left (or have been added maybe).

<URL:http://groups.google.com/group/comp.lang.javascript/browse_frm/thread/7074abbe73943dcb/2d46c041ee36bc60?q=Combining+object+arrays&rnum=1& hl=en#2d46c041ee36bc60>

Just remember that your array will be references to the options, not the
actual options. If you show what you are trying to do with the options,
then maybe more help can be provided.

--
Rob
Sep 18 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: tomhath | last post by:
Can someone give an opinion whether this is a dumb approach? I want to generate a list of OPTION elements for s SELECT element, but I can't see any (clean) way to use a template on a list of...
12
by: Kevin Lyons | last post by:
Hello, I am trying to get my select options (courses) passed correctly from the following URL: http://www.dslextreme.com/users/kevinlyons/selectBoxes.html I am having difficulty getting the...
6
by: Christopher Benson-Manica | last post by:
I understand that the options property of a select element is an array of the options displayed by the select element. If that's so, then why can't I sort the array? Rather, I *want* to sort the...
0
by: Greg Walker | last post by:
I have a bizarre, but easily tested problem. ANY select option containing HTML encoded characters appear as blank lines for Mac IE 5.2. when the page is served as an ASPX page. The EXACT SAME...
1
by: Leonardo Calado | last post by:
Hi, I have the following problem: I have 4 select fields like; <select id="choice_101" name="choice_101"> <option label="Will not attend" value="Will not attend" selected="selected">Will not...
1
by: jason.tadeo | last post by:
I am very new to java script and I am trying to be able to have two select boxes. One that has states and one that has cities. On the change or pick of the state then the cities in my data base are...
3
by: Beholder | last post by:
I hope that someone can help me with the following: Short background explenation: I have a shrfepoint page (newform.aspx) in a item list. On this page is a lookup column that displays a lookup...
1
by: bafadam | last post by:
I've been wracking my brains trying to figure out how to do this, so I thought I would pop it out here for the experts, since my earlier attempts have ended in failure. I'm trying to retrive a...
2
by: REG | last post by:
Hi All, Could someone point me in the right direction ... have been searching for days for a code snippit or a tuitorial that will show how to: 1. Load XML data into an Html Page in a way that is...
19
by: viki1967 | last post by:
Hi there. I have this Function: //Funzione Calcola function calcola(frmObj, id)
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
0
by: Aliciasmith | last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
0
tracyyun
by: tracyyun | last post by:
Hello everyone, I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
4
NeoPa
by: NeoPa | last post by:
Hello everyone. I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report). I know it can be done by selecting :...
3
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM) Please note that the UK and Europe revert to winter time on...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
2
by: GKJR | last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.