Github user AhyoungRyu commented on the issue: https://github.com/apache/zeppelin/pull/2154 @guicaro Just noticed that the behaviour that you mentioned was intended one. In Zeppelin, we support `editOnDoubleClick` \w Markdown interpreter. With this feature, you can hide/show the code block. Since you clicked the paragraph several times while you're clicking the checkbox, the code section was hidden because of this feature of `%md` interpreter. So it's not neither dynamic form behaviour itself's issue nor this patch's. You don't need to test this in #2156(don't wanna make you spend your time in the weekend), you can simply check this with `%spark` interpreter in this branch :) ``` %spark println("Hello "+z.select("day", Seq(("1","mon"), ("2","tue"), ("3","wed"), ("4","thurs"), ("5","fri"), ("6","sat"), ("7","sun")))) val options = Seq(("apple","Apple"), ("banana","Banana"), ("orange","Orange")) println("Hello "+z.checkbox("fruit", options).mkString(" and ")) ```
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---