Burak Emre Kabakcı

Results 88 comments of Burak Emre Kabakcı

I was able to solve it as follows: ``` React.useEffect(() => { if (columns != null && apiRef?.current?.restoreState != null && props.datagrid?.initialState != null) { apiRef?.current?.restoreState(props.datagrid?.initialState) } }, [columns]); ```

Is there such plan already? I see that the components are abstracted in another package so it seems like the direction but I'm not sure if this is intended.

Great to hear! JSON Schema also conditional blocks i.e `if/else` and I assume that it's not supported yet. Not sure if it's feasible in addition to the work for `anyOf/allOff`...

Also relevant: https://github.com/vega/vega-plus

Done, thanks @lucas-koehler! This feature is useful to me primarily because I infer the uischema and custom renderer from the original json schema properties with `x-jsonform` prefix.

@lucas-koehler It looks like manual action needed to trigger CI: https://github.com/eclipsesource/jsonforms/actions/runs/4263956482

Thanks for the quick answer @aliemir! I understand the limitation and I feel like this is not Refine/Superplate's focus and the solution that you suggested makes sense. What would you...

Unfortunately I don't have any documentation for kume yet, it's all in README file. However you can find examples in unit and integration tests in here: https://github.com/buremba/kume/tree/master/src/test/java/org/rakam/kume

When creating a cluster, you may set the nodes. ``` Cluster cluster = new ClusterBuilder() .services(services) .members(members) // here it is .serverAddress(serverAddress) .start(); ``` Once the cluster is running, when...