It is known that it is impossible (I think) to combine two cells of a jtable, is there a way to simulate that they combine, or is there any other class, that allows to do that? I need to schedule a class in java, thanks.
It is known that it is impossible (I think) to combine two cells of a jtable, is there a way to simulate that they combine, or is there any other class, that allows to do that? I need to schedule a class in java, thanks.
You can try with a matrix of Jlabels, where each label has the respective information and to give the feeling of "combining cells" you can assign them what they occupy with a GridbagLayout, since the GridbagLayout divides into a grid and when placing a component we can tell you in what position of the grid we want it to be located and how many fields it occupies ... I hope it would have served you in something xD