We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
None
As of panel 0.7.0 (with bokeh 1.4.0), the Fileinput widget does not set the name of the uploaded file.
E.g. in the following code
import panel as pn inp = pn.widgets.FileInput(name='Upload') btn = pn.widgets.Button(name='Upload', button_type='primary') r= pn.Column(pn.Row(inp, btn),) def on_click_parse(event): #print(inp.get_param_values()) print(inp.filename) btn.on_click(on_click_parse) r.servable()
it always prints None to the terminal.
I can already see where the issue is and will open a PR.
The text was updated successfully, but these errors were encountered:
Looking at the code from 0.6.2 that was reported to be working fine on SO, it seems to be unchanged in 0.7. https://github.com/holoviz/panel/blob/v0.6.2/panel/widgets/input.py#L55
I.e. perhaps this was a change that crept in via a bokeh update?
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
As of panel 0.7.0 (with bokeh 1.4.0), the Fileinput widget does not set the name of the uploaded file.
E.g. in the following code
it always prints
None
to the terminal.I can already see where the issue is and will open a PR.
The text was updated successfully, but these errors were encountered: