What is Dynamic Form?

Apache Zeppelin dynamically creates input forms. Depending on language backend, there're two different ways to create dynamic form. Custom language backend can select which type of form creation it wants to use. Forms can have different scope (paragraph or note). Forms with scope "note" available in all paragraphs regardless of which paragraph has code to create these forms.

Using form Templates (scope: paragraph)

This mode creates form using simple template language. It's simple and easy to use. For example Markdown, Shell, Spark SQL language backend uses it.

Text input form

To create text input form, use ${formName} templates.

for example

Also you can provide default value, using ${formName=defaultValue}.

Password form

To create password form, use ${password:formName} templates.

for example

Select form

To create select form, use ${formName=defaultValue,option1|option2...}

for example

Also you can separate option's display name and value, using ${formName=defaultValue,option1(DisplayName)|option2(DisplayName)...}

The paragraph will be automatically run after you change your selection by default. But in case you have multiple types dynamic form in one paragraph, you might want to run the paragraph after changing all the selections. You can control this by unchecking the below Run on selection change option in the setting menu.

Even if you uncheck this option, still you can run it by pressing Enter.

Checkbox form

For multi-selection, you can create a checkbox form using ${checkbox:formName=defaultValue1|defaultValue2...,option1|option2...}. The variable will be substituted by a comma-separated string based on the selected items. For example:

You can specify the delimiter using ${checkbox(delimiter):formName=...}:

Like select form, the paragraph will be automatically run after you change your selection by default. But in case you have multiple types dynamic form in one paragraph, you might want to run the paragraph after changing all the selections. You can control this by unchecking the below Run on selection change option in the setting menu.

Even if you uncheck this option, still you can run it by pressing Enter.

Using form Templates (scope: note)

Has a same syntax but starts with two symbols $. (for ex. input $${forName})

Creates Programmatically (scope: paragraph)

Some language backends can programmatically create forms. For example ZeppelinContext provides a form creation API

Here are some examples:

Text input form

%spark
println("Hello "+z.textbox("name"))
%pyspark
print("Hello "+z.textbox("name"))

Use z.input() instead in version 0.7.3 or prior. z.input() is deprecated in 0.8.0.

Text input form with default value

%spark
println("Hello "+z.textbox("name", "sun")) 
%pyspark
print("Hello "+z.textbox("name", "sun"))

Use z.input() instead in version 0.7.3 or prior. z.input() is deprecated in 0.8.0.

Password form

%spark
print("Password is "+ z.password("my_password"))
%pyspark
print("Password is "+ z.password("my_password"))

Select form

%spark
println("Hello "+z.select("day", Seq(("1","mon"),
                                    ("2","tue"),
                                    ("3","wed"),
                                    ("4","thurs"),
                                    ("5","fri"),
                                    ("6","sat"),
                                    ("7","sun"))))
%pyspark
print("Hello "+z.select("day", [("1","mon"),
                                ("2","tue"),
                                ("3","wed"),
                                ("4","thurs"),
                                ("5","fri"),
                                ("6","sat"),
                                ("7","sun")]))

Checkbox form

%spark
val options = Seq(("apple","Apple"), ("banana","Banana"), ("orange","Orange"))
println("Hello "+z.checkbox("fruit", options).mkString(" and "))
%pyspark
options = [("apple","Apple"), ("banana","Banana"), ("orange","Orange")]
print("Hello "+ " and ".join(z.checkbox("fruit", options, ["apple"])))

Creates Programmatically (scope: note)

The difference in the method names:

Scope paragraph Scope note
input (or textbox) noteTextbox
select noteSelect
checkbox noteCheckbox