43 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
43
views
Closing a custom pop-up menu In Justpy
I'm using Justpy v0.14 and I'm trying to implement a very simple pop-up menu. There is a button, when clicked a pop-up shows up. The pop-up should be closed when a user clicks somewhere outside the ...
0
votes
1
answer
67
views
Get Position of clicked pixel on an image in justpy
In justpy, I would like to load an image and record which pixel a clicked on. So I need the position of the pixel of an image with an offset, not position of the mouse on screen.
JustPy click and ...
1
vote
0
answers
61
views
Python JustPy QTable custom row color
I am creating QTable:
some_table = jp.QTable(
hide_bottom=True,
title=f'Some Table Title',
data=[],
columns=some_table_columns,
a=some_table_div,
dense=True,
style="...
1
vote
0
answers
72
views
Looking for button to navigate to login page in python using justpy
I'm using justpy to make a small scale management system, its a framework for developing web apps in python without css/html/js. The menu displays itself but none of the buttons work.The following is ...
0
votes
1
answer
130
views
JustPy QuasarPage - where do I put the favicon file in my project tree?
Problem statement
I'm trying to set the favicon for my QuasarPages in a JustPy web app, adding the attribute favicon="book_icon_32.png" to my QuasarPage. When looking at the page source in ...
1
vote
0
answers
184
views
JustPy: How we configure the justpy.env for the session timeout configuration
I want to add the timeout for session in my justpy project but didn't understand the how the configure the justpy.env in justpy.
Thank you.
I have added the justpy.env file in my project directory, ...
1
vote
1
answer
80
views
Justpy: Add Highcharts Stock Options: "hollowcandlestick" & "Stock Tools"
How do I add Highcharts Stock series options to Justpy code? Specifically, I want to add:
hollow candlestick
Stock tools
I am working my way through the Justpy documentation and can't figure out how ...
1
vote
1
answer
139
views
JustPy Redirect won't redirect
I feel like I'm doing something rediculously stupid here, but I've been banging my head against the wall all day, and don't seem to be making any progress! I have this function:
def ...
1
vote
1
answer
515
views
How to show Ag grid pop up menu above Quasar QDialog
I am using Ag grid inside quasar QDialog. When the dialog is displayed and I click the column option menu, the Ag grid pop up menu appears behind QDialog, see the picture below:
is there any way to ...
1
vote
1
answer
544
views
How to set Aggrid style height to 100% in JustPy
I am trying to set the style of Aggrid heigth to 100% but the table does not show.
I tried using viewport and pixel, they worked perfectly fine. Fow the width, percentage is also working fine.
What I ...
1
vote
0
answers
89
views
How to increment Quasar AjaxBar in JustPy
I have been trying to implement Quasar Ajax Bar in justPy.
The code below will increase the value of Ajax bar by 10 when the increment button is clicked. But the increment is not working properly. Can ...
1
vote
1
answer
1k
views
Where do we insert an ag-grid enterprice license when using it via justpy?
Somehow this seem to involve this
https://www.ag-grid.com/javascript-data-grid/licensing/
And this
https://github.com/justpy-org/justpy/search?q=ag-grid-enterprise&type=
But I just cant seem to ...
1
vote
0
answers
593
views
How do you specify Column number formats using AG-Grid via JustPy?
I am able to render an AG-grid by following the example code laid out on the JustPy website. However when it comes to formatting cells or columns the AG-grid documentation shows using valueFormatter ...
2
votes
1
answer
3k
views
How can i make button in table cell using NiceGui library?
from nicegui import ui
Called when a button in a cell is clicked:
def buttonClick(*args):
print(args)
table = ui.table({
'columnDefs': [
{'headerName': 'Task id', 'field': '...
1
vote
0
answers
52
views
Trouble with formatting X axis labels in HighCharts
I've been trying to figure this out for a day or two. I'm pretty sure I've typed the exact code from the tutorial I've been watching, but my x axis labels are numbers going from 0 to 1200 in ...