According to the specs, we have 2 types of form creation - text field, and a dropdown box
http://zeppelin-project.org/docs/zeppelincontext.html Text field /* Create text input form */z.input("formName") Dropdown box /* Create select form */z.select("formName", Seq(("option1", "option1DisplayName"), ("option2", "option2DisplayName"))) Is there a way to have Zeppelin get input from a calendar widget instead? if not, what do people recommend as the next best thing? I could have something else host the calendar widget (maybe django, or servlet). and when people click on the date in the calendar, it'd link it to the zeppelin paragraph. and somehow get the date as a parameter to the paragraph python code? does that sound like a good idea?