Hannu Kröger created ZEPPELIN-3841:
--------------------------------------
Summary: spark context z.noteTextbox uses paragraph form field
Key: ZEPPELIN-3841
URL: https://issues.apache.org/jira/browse/ZEPPELIN-3841
Project: Zeppelin
Issue Type: Bug
Affects Versions: 0.8.0
Reporter: Hannu Kröger
This causes form field to be generated for the whole notebook (as expected)
{code:java}
%spark.pyspark
df = sqlContext.sql("SELECT COUNT(*),customer FROM table GROUP BY customer
HAVING cnt > " + z.noteTextbox("minCount")){code}
This causes form field to be generated for the paragraph (not expected
behaviour)
{code:java}
%spark
val df2 = sqlContext.sql("SELECT COUNT(*),customer FROM table GROUP BY customer
HAVING cnt > " + z.noteTextbox("minCount")){code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)