Posts by ALAN GULARTE • 173 points
6 posts
-
1
votes1
answer71
viewsQ: Capture current selected option - multipleselect
Given an Multiple select field, how to get, via javascript, the value of the option that was last selected (current)? I tried to use the expression below, but the last value (in alphabetical order)…
-
1
votes1
answer349
viewsQ: Custom Facebook "Like" button
Is there any way to customize or build the button "Like/Like" (to a page) of Facebook? I’d like a custom one, because the original doesn’t fit the design of mobile app that I’m developing.…
-
3
votes2
answers3289
viewsA: Subconsulta Mysql
SELECT T1.NOME, T1.CARGO, T1.SALARIO_ATUAL, ( SELECT MAX(SALARIO_ATUAL) FROM TABELA T2 WHERE T2.CARGO = T1.CARGO ) AS MAIOR_SALARIO_PARA_CARGO FROM TABELA…
select-sqlanswered ALAN GULARTE 173 -
1
votes1
answer80
viewsA: Mysql sub-base 1
Hello, I believe that this query can solve, I did not test it. SELECT T1.NOME, T1.CARGO, T1.SALARIO_ATUAL, ( SELECT MAX(SALARIO_ATUAL) FROM TABELA T2 WHERE T2.CARGO = T1.CARGO ) AS…
mysqlanswered ALAN GULARTE 173 -
0
votes1
answer304
viewsQ: XSL read file names from a folder
I have the following file structure in a folder: -PASTA_XYZ - file1.xml - file2.xml - file3.xml - index.xml I would like the index.xml file to return the name of the files in this folder, but I have…
-
1
votes1
answer90
viewsQ: jQuery Mobile: page Events
I can’t quite understand the hierarchy of page Events jQuery Mobile. How do I assemble all the content of an HTML page (and its modifications) and just present it to the user end when the page is…