You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
136 lines
3.3 KiB
Plaintext
136 lines
3.3 KiB
Plaintext
11 months ago
|
|
||
|
function fnSelect( combo ) {
|
||
|
var iIndex = combo.selectedIndex ;
|
||
|
oListText.selectedIndex = iIndex ;
|
||
|
var oTxtText = document.getElementById( "txtText" ) ;
|
||
|
oTxtText.value = oListText.value ;
|
||
|
}
|
||
|
|
||
|
function fnAdd() {
|
||
|
var oTxtText = document.getElementById( "txtText" ) ;
|
||
|
if( oTxtText.value!=""){
|
||
|
fnAddComboOption( oListText, oTxtText.value, oTxtText.value ) ;
|
||
|
}
|
||
|
oListText.selectedIndex = oListText.options.length - 1 ;
|
||
|
oTxtText.value = '' ;
|
||
|
oTxtText.focus() ;
|
||
|
}
|
||
|
|
||
|
function fnModify() {
|
||
|
var iIndex = oListText.selectedIndex ;
|
||
|
if ( iIndex < 0 ) return ;
|
||
|
var oTxtText = document.getElementById( "txtText" ) ;
|
||
|
oListText.options[ iIndex ].innerHTML = fnHTMLEncode( oTxtText.value ) ;
|
||
|
oListText.options[ iIndex ].value = oTxtText.value ;
|
||
|
oTxtText.value = '' ;
|
||
|
oTxtText.focus() ;
|
||
|
}
|
||
|
|
||
|
function fnMove( steps ) {
|
||
|
fnChangeOptionPosition( oListText, steps ) ;
|
||
|
}
|
||
|
|
||
|
function fnDelete() {
|
||
|
fnRemoveSelectedOptions( oListText ) ;
|
||
|
}
|
||
|
|
||
|
function fnSetSelectedValue() {
|
||
|
var iIndex = oListText.selectedIndex ;
|
||
|
if ( iIndex < 0 ) return ;
|
||
|
var oTxtText = document.getElementById( "txtSelValue" ) ;
|
||
|
oTxtText.innerHTML = oListText.options[ iIndex ].value ;
|
||
|
}
|
||
|
|
||
|
// Moves the selected option by a number of steps (also negative)
|
||
|
function ChangeOptionPosition( combo, steps ) {
|
||
|
var iActualIndex = combo.selectedIndex ;
|
||
|
if ( iActualIndex < 0 ){
|
||
|
return ;
|
||
|
}
|
||
|
var iFinalIndex = iActualIndex + steps ;
|
||
|
if ( iFinalIndex < 0 ) {
|
||
|
iFinalIndex = 0 ;
|
||
|
}
|
||
|
|
||
|
if ( iFinalIndex > ( combo.options.length - 1 ) ) {
|
||
|
iFinalIndex = combo.options.length - 1 ;
|
||
|
}
|
||
|
|
||
|
if ( iActualIndex == iFinalIndex ) {
|
||
|
return ;
|
||
|
}
|
||
|
|
||
|
var oOption = combo.options[ iActualIndex ] ;
|
||
|
var sText = fnHTMLDecode( oOption.innerHTML ) ;
|
||
|
|
||
|
combo.remove( iActualIndex ) ;
|
||
|
|
||
|
oOption = fnAddComboOption( combo, sText, sText, null, iFinalIndex ) ;
|
||
|
|
||
|
oOption.selected = true ;
|
||
|
}
|
||
|
|
||
|
// Remove all selected options from a SELECT object
|
||
|
function fnRemoveSelectedOptions(combo) {
|
||
|
// Save the selected index
|
||
|
var iSelectedIndex = combo.selectedIndex ;
|
||
|
|
||
|
var oOptions = combo.options ;
|
||
|
|
||
|
// Remove all selected options
|
||
|
for ( var i = oOptions.length - 1 ; i >= 0 ; i-- ) {
|
||
|
if (oOptions[i].selected) combo.remove(i) ;
|
||
|
}
|
||
|
|
||
|
// Reset the selection based on the original selected index
|
||
|
if ( combo.options.length > 0 ) {
|
||
|
if ( iSelectedIndex >= combo.options.length ) iSelectedIndex = combo.options.length - 1 ;
|
||
|
combo.selectedIndex = iSelectedIndex ;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Add a new option to a SELECT object (combo or list)
|
||
|
function fnAddComboOption( combo, optionText, optionValue, documentObject, index ) {
|
||
|
var oOption ;
|
||
|
|
||
|
if ( documentObject ) {
|
||
|
oOption = documentObject.createElement("option") ;
|
||
|
} else {
|
||
|
oOption = document.createElement("option") ;
|
||
|
}
|
||
|
|
||
|
if ( index != null ) {
|
||
|
combo.options.add( oOption, index ) ;
|
||
|
} else {
|
||
|
combo.options.add( oOption ) ;
|
||
|
}
|
||
|
|
||
|
oOption.innerHTML = optionText.length > 0 ? fnHTMLEncode( optionText ) : ' ' ;
|
||
|
oOption.value = optionValue ;
|
||
|
|
||
|
return oOption ;
|
||
|
}
|
||
|
|
||
|
function fnHTMLEncode( text ) {
|
||
|
if ( !text ) {
|
||
|
return '' ;
|
||
|
}
|
||
|
text = text.replace( /&/g, '&' ) ;
|
||
|
text = text.replace( /</g, '<' ) ;
|
||
|
text = text.replace( />/g, '>' ) ;
|
||
|
|
||
|
return text ;
|
||
|
}
|
||
|
|
||
|
|
||
|
function fnHTMLDecode( text ) {
|
||
|
if ( !text ) {
|
||
|
return '' ;
|
||
|
}
|
||
|
text = text.replace( />/g, '>' ) ;
|
||
|
text = text.replace( /</g, '<' ) ;
|
||
|
text = text.replace( /&/g, '&' ) ;
|
||
|
|
||
|
return text ;
|
||
|
}
|