PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 25 → Componente Table - Web Dev Mobile
Componente Table - Web Dev Mobile
Iniciado por guilherme, 30,oct. 2016 15:19 - 2 respuestas
Miembro registrado
12 mensajes
Popularité : +1 (1 vote)
Publicado el 30,octubre 2016 - 15:19
Como configurar corretamente as colunas do componente table ?

Visão vertical




Visão horizontal




Existem linhas que não estão com valores, como excluir elas, isto é, só aparecer as linhas quando tiver valores.

Assim está meu código:

IF cbb_Municipios..DisplayedValue = "" THEN
st_Error = "Deve escolher um munícipio !"
st_Error..Visible = True
RETURN
END

IF cbb_Contribuintes..DisplayedValue = "" THEN
st_Error = "Deve escolher um contribuinte !"
st_Error..Visible = True
RETURN
END

IF cbb_Exercicios..DisplayedValue = "" THEN
st_Error = "Deve escolher um exercício !"
st_Error..Visible = True
RETURN
END

st_Error..Visible = False

cbb_Municipios..Value = ""
cbb_Contribuintes..Value = ""
cbb_Exercicios..Value = ""

OpenChild('Informações_Comuns', cbb_Municipios..DisplayedValue, cbb_Contribuintes..DisplayedValue, cbb_Exercicios..DisplayedItem)
Miembro registrado
208 mensajes
Popularité : +25 (25 votes)
Publicado el 31,octubre 2016 - 18:19
Eu uso o windev, não sei se funciona da mesma forma, mas no windev sempre mostra a quantidade de linha com base na altura do componente na tela, se a altura do componente corresponder a 10 linhas, sempre vai aparecer 10 linhas independentemente da quantidade de registros a serem exibidos, se for mais que 10 registro automaticamente aparece uma barra de rolagem, caso contrário não

--
André Martini
IS2 Automotive http://www.is2.inf.br/is2automotive/index.html
IS2 Construtive http://www.is2.inf.br/is2construtive/index.html
IS2 Store http://www.is2.inf.br/is2store/index.html
IS2 Gerent http://www.is2.inf.br/is2gerent/index.html
Miembro registrado
12 mensajes
Popularité : +1 (1 vote)
Publicado el 31,octubre 2016 - 22:19
Então é pelo que entendi é pela altura do componente e não pela quantidade de registros.

Estranho não ?