lls-ws / lls-src

Source files from project LLS-WS
GNU General Public License v3.0
0 stars 0 forks source link

Fix "Label For" on Table Title #12

Open lls-ws opened 5 months ago

lls-ws commented 5 months ago

[!CAUTION] Replace this lines

var divTitulo = $('\<div/>').addClass('input-group form-control formulario_cor');

var titulo = label( 'nomeProcura', tituloPainelCadastro(2, eval('pegaNomeColunas' + nomeTabela + '(3)')), 'texto_label texto_grande' ).addClass('col-md-12 col-xs-12');

divTitulo.append(titulo);

[!NOTE] With this lines

var titulo = $("\<div/>").addClass('titulo_tabela') .text(tituloPainelCadastro(2, eval('pegaNomeColunas' + nomeTabela + '(3)')));

var tituloTabela = $('\<div/>') .addClass('input-group form-control formulario_cor') .append(titulo);

[!IMPORTANT] Change Files

[!CAUTION] Replace this line

.append(divTitulo);

[!NOTE] With this lines

.append(tituloTabela);

[!WARNING] Add this lines to CSS File

.titulo_tabela {

text-align: center; font-weight: bold; font-size: x-large; color: #FFFFFF;

text-shadow: black 0.1em 0.1em 0.2em;

}

Change File

[!TIP] Run Commands

lls-jquery
lls-jquery milho