Questions tagged [ipyvuetify]

33 questions
4
votes
0 answers

Horizontal Timeline in Vuetify 2 / ipyvuetify

I'm working with ipyvuetify and trying to use the v-timeline component from Vuetify 2.x but I would like to get a horizontal timeline instead of the default vertical one. I've tried going through the documentation here but couldn't find any…
gokul_uf
  • 740
  • 1
  • 8
  • 21
2
votes
1 answer

Html Theme Integration in Vuetify

Can I import CSS and JavaScript files to Vuetify for importing some components? Or Can I put an entire theme that would be a basic HTML theme? For example, I found a tool that is needed in the project can I integrate it with Vuetify such as…
hoor Iqbal
  • 39
  • 6
2
votes
1 answer

How to server jupyter-vue.js file from voila page?

I am using Jupyter and voila to serve notebook as dashboard. I am using ipyvuetify as the UI widget framework. ipyvuetify fetches some static files such as jupyter-vue.js from the internet This doesn't work with some of our users who have restricted…
2
votes
0 answers

Open a url from a jupyter lab notebook rendered with voila in a new Chrome Tab

I work in a JupyterHub environment where I use to render applications with voila. One of this particular applications is supposed to be a kind of Launcher from where a user can launch (open) a particular url web in another chrome tab. I use the…
JFerro
  • 3,203
  • 7
  • 35
  • 88
2
votes
0 answers

ipyvuetify: The resource “(localhost).../extension.js?v=...” was blocked due to MIME type (“text/html”) mismatch (X-Content-Type-Options: nosniff)

I am getting this error/warning on the browser (e.g. Use Firefox, and right-click "inspect element") from both jupyter and voila when trying to run any ipyvuetify.VuetifyTemplate / vue.VueTemplate objects, It does not stop the widget from running,…
ntg
  • 12,950
  • 7
  • 74
  • 95
2
votes
2 answers

run programmatically an ipyvuetify button

Assume I have a code with a button coded in ipyvuetify v_btn_load = vue.Btn(class_='mx-2 light-red darken-1', children=[vue.Icon(left=True, children=['get_app']),'Load data']) def on_click_load(widget, event, data): …
JFerro
  • 3,203
  • 7
  • 35
  • 88
1
vote
0 answers

IPyvuetify: Adding Cards inside DataTable

I am creating a data table using IPyvuetify and want to display the values in one of the columns as cards. Looking at the vuetify docs for data table, there doesn't seem to be a clear way to do this. Has anyone had success trying to do this in…
gokul_uf
  • 740
  • 1
  • 8
  • 21
1
vote
1 answer

Button click is not fetching the correct v_model value of combobox

I am trying to get the value of a combobox on a button click and process the value in the button click handler. However, the combobox.v_model seems to be updated correctly only after the button click handler has exited. Here is what I did (code…
mattkeanny
  • 21
  • 5
1
vote
1 answer

ipyvuetify FileInput Widget - retrieving file input

I am currently trying to use an ipyvuetify FileInput field. My expectation was that if I were to define v_model, that I would be then able to read the selected file from filefield via the v_model attribute. import ipyvuetify as v def…
Flaminator
  • 564
  • 6
  • 17
1
vote
1 answer

How to get the selected items for DataTable in ipyvuetify

I'm using ipyvuetify and I still have some problems in understanding what v_modelstands for. What I need is a table with selectable rows and a button that reads selected lines and return them when clicked. I tried the following code. import…
emonier
  • 293
  • 1
  • 3
  • 13
1
vote
1 answer

ipyvuetify add event icon in select object

I would like to link to the event if you click on the icon, do you have an idea? Because if the user click on Delete icon I would like to clean all the value selected in the Select, maybe we have another way to do that. import ipyvuetify as…
Flo Cp
  • 281
  • 2
  • 13
1
vote
1 answer

get value select from ipyvuetify

It's a very simple question, but I didn't find the solution. I use ipyvuetify and I would like to get the value from Select widget. For example, if I click on "Apple" I would like to get this value in an feature. What is the workflow to get the…
Flo Cp
  • 281
  • 2
  • 13
1
vote
1 answer

GoldenLayout(ipygoldenlayout): How to programmatically change Tabs?

I'm trying to find a way to programmatically change tabs in ipyGoldenLayout. Is there any way I could do it? import ipyvuetify as v from traitlets import Unicode from ipygoldenlayout import GoldenLayout gl = GoldenLayout() class…
1
vote
2 answers

python ipyvuetify how to combine multiple widgets into a class

With ipyvuetify, I have to repeatedly use a pair of Textfield and Textarea in an ExpansionPanel. Their interactions are linked as they are represent two fields from a DB line. Is it possible to create a custom widget, which contains the different…
1
vote
1 answer

python ipyvuetify equivalent to ipywidgets Output

A simple Output ipywidget to display text might look like this: out = widgets.Output(layout={'border': '1px solid black'}) out this element is very useful when rendering with voila. What is the equivalent in ipyvuetify? I did not find an equivalent…
JFerro
  • 3,203
  • 7
  • 35
  • 88
1
2 3