Blake Watson

Results 10 issues of Blake Watson

Hello, I was going to use this component for a series of blogging articles on JavaFX but it doesn't seem to play well with Java 15 or recent Gradle versions....

I made a spinner example, which might be helpful. ``` (ns ezclj.utils.spinner (:require [cljfx.api :as fx] [clojure.core.cache :as cache])) (def ctx (atom (fx/create-context {} cache/lru-cache-factory))) (defn view [{:keys [fx/context]}] {:fx/type...

Hi, vlaaad! Example 27 shows how to change the currently selected item on tables, trees, listbox—which works great—but if you shrink the window down, you'll notice that while the item...

question

Do these events ever fire? I've got a stage with scene that I want things to happen when it appears, but while I don't get a "no props" error for...

bug

Hi, vlaad! Trying to run the MarkDown example and getting: superinterface check failed: class de.codecentric.centerdevice.javafxsvg.SvgImageLoaderFactory (in unnamed module @0x4b608b73) cannot access class com.sun.javafx.iio.ImageLoaderFactory (in module javafx.graphics) because module javafx.graphics does...

bug

Running the minimal example gives this error, using JavaFX 16: `Unable to resolve symbol: create in this context` True of the next several examples as well. I think I've seen...

Upgrading an old Apollo client/server setup to use graphql-tools exclusively, BatchHttpLink queries fail with "POST body sent invalid JSON" (network error) and "POST http://localhost:4000/graphql 400 (Bad Request) batchHttpLink.ts:132" (on the...

Howdy, I've been using this (very helpful, thank you!) library for a project where I take data from a database via graphql and then put it into a JavaFX table...

Trying to add new functionality and discovered this doesn't seem to work out of the box. ```clojure ((infix.macros/from-string "10 * 5")) => 50 ((infix.macros/from-string "10 . 5")) Execution error (ParseException)...

I wanted to add some features not built-in to infix, so I did the following: 1. Defined the routines I wanted to use: ```clojure (defn max [a, b] (Math/max a,...