I'm using Beamer for my slides and I need to show my tabular gradually, so after each click I get one row at a time.
I'm using \pause that works with some errors:
\begin{frame}
\frametitle{}
\scalebox{0.80}{
\begin{tabular}{|*{2}{c|}}
\hline
Column one & Column Two\\
\hline
ValueRow1Colum1 & ValueRow1Colum2\\
\hline\pause
ValueRow2Colum1 & ValueRow2Colum2\\
\hline
\end{tabular}
}
\end{frame}
I'm getting this result after the first click:
What is wrong is this vertical line in the begining of the row2.
How can I delete this one, because it should be shown only after the last click.
