elimintz

Results 166 comments of elimintz

I'll add this feature in one of the next versions.

Yes, I agree. However that is printed as the last statement of the startup and that function does not have access to start_server. Since users that run uvicorn from the...

There is no simple way to do it as python dictionaries that are used to define the chart cannot hold a JavaScript function. Unfortunately, the only way to do this...

There will be a solution for this in the new version. The component will automatically evaluate all formatter fields as if they are a javascript function. The only caveat is...

I agree it is a good idea to have an option to expire the cookie and I will add that in a future version. But just to help me think...

I also use Tailwind extensively and love it. The update of tw_dict will have to wait for a new version (unless of course you want to take the task on...)...

My bad, I didn't realize that unpkg does not get the latest version, just the latest version of the major version number specified. I do not have a release date...

Hi, Thank you for using JustPy. The navigation event (as well as some others) was added in Quasar version 1.13 and I have not had the opportunity to add it...

Thank you, the workaround is very helpful.

Are you redirecting from an event handler? If so, assuming that the second argument of the event handler is `msg`, try the following: ```python msg.page.redirect = "https://accounts.google.com/o/oauth2/auth?response_type=code&client_id=SOME_CLIENT_ID.apps.googleusercontent.com&redirect_uri=http%3A%2F%2Flocalhost%3A8000%2Foauth-authorized%2Fgoogle&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.email+https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fuserinfo.profile&state=SOME_STATE&access_type=offline&include_granted_scopes=true" ``` Please let...