Created
May 17, 2017 12:34
-
-
Save mvnp/c71565fe5e3ea6f9c67510a38db13515 to your computer and use it in GitHub Desktop.
Como importar parâmetros de uma javascript var dentro da outra?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.searchUnidadeDescr = $('.sumo_unidade_descr').SumoSelect({ | |
placeholder: 'Selecione...', | |
csvDispCount: 0, | |
captionFormat:'{0} Selecionado(s)', | |
captionFormatAllSelected:'{0} Todos Selecionados', | |
floatWidth: 600, | |
forceCustomRendering: true, | |
nativeOnDevice: ['Android', 'BlackBerry', 'iPhone', 'iPad', 'iPod', 'Opera Mini', 'IEMobile', 'Silk'], | |
outputAsCSV: false, | |
csvSepChar: ',', | |
okCancelInMulti: false, | |
triggerChangeCombined: true, | |
selectAll: true, | |
search: true, | |
searchText: 'Unidade descrição...', | |
noMatch: 'Nada encontrado para "{0}"', | |
prefix: '', | |
locale: ['OK', 'Cancel', 'Todos'], | |
up: false | |
}); | |
window.searchUnidadeClass = $('.sumo_unidade_class').SumoSelect({ | |
// Como importar os atributos da variável de cima | |
// visto que eu só tenho que trocar um parametro? | |
// Alguma coisa como incluir a variável e ela pegar | |
// os atributos. | |
var searchUnidadeDescr; | |
searchText: 'Unidade descrição...', | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment