You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 29, 2019. It is now read-only.
This appears to still be broken. I am trying to create a param.Action button that just prints a statement. This example works works in paramnb and seems like it should also work in parambokeh. Am I missing something?
def hello(x):
print("Hello %s" % x)
class BaseClass(param.Parameterized):
x = param.Parameter(default=3.14,doc="X position")
class Example(BaseClass):
msg = param.Action(hello, doc="""Print a message.""",precedence=0.7)
parambokeh.Widgets(Example)
See #7
The text was updated successfully, but these errors were encountered: