Lecsek
December 8, 2015, 4:28pm
#1
Hello,
A last final cut to my scheduler. I 'm using the display method to hide few section in some event’s type. But the lines are still visible…
Is there any solution to hide them too?
text.node.style.display = "none";
text.node.previousSibling.style.display = "none";
Thank you!
Hi,
try this line
text.node.parentNode.style.display = "none";
Lecsek
December 9, 2015, 2:30pm
#4
And last but not least:
Is possible to just hide a line from a section but displaying the section content?
Thank you.
Hi,
the line added by bottom border of the previous section element. So you can simply make it transparent:
prevControl.node.parentNode.style.borderBottomColor = “transparent”;
Lecsek
December 11, 2015, 8:57pm
#6
Do the Gods of microships bless you!!
Thank you for the good job…