PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WINDEV 25 → Componente Table - Web Dev Mobile
Componente Table - Web Dev Mobile
Started by guilherme, Oct., 30 2016 3:19 PM - 2 replies
Registered member
12 messages
Popularité : +1 (1 vote)
Posted on October, 30 2016 - 3:19 PM
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)
Registered member
208 messages
Popularité : +25 (25 votes)
Posted on October, 31 2016 - 6:19 PM
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
Registered member
12 messages
Popularité : +1 (1 vote)
Posted on October, 31 2016 - 10:19 PM
Então é pelo que entendi é pela altura do componente e não pela quantidade de registros.

Estranho não ?