Patrick Lindsay

Results 17 comments of Patrick Lindsay

Anyone got anywhere with this? I've created a Rails 4.3 app using materialize and simple_form to create a basic contact form shown below. If I use `form_for` and submit the...

Great cheers @gizotti that sorted both issues. I'll use @mediasota config and go from there for now.

I've began to work on a gem which includes the SimpleForm configuration generator and custom inputs. Take a look here, [SimpleForm-Materialize](https://github.com/patricklindsay/simple_form-materialize) I'm currently having difficulty adding the custom widgets I've...

Just checked, this is still an issue in development environment only as it is caused by code reloading (which is also why it doesn't always happen - see [Rails issue](https://github.com/rails/rails/issues/29542))....

@JustinSainton Did you manage to fix this? I'm experiencing the same issue. Strange because `BlockEditorKeyboardShortcuts` component is being used which _should_ add this functionality https://github.com/getdave/standalone-block-editor/blob/master/src/components/block-editor/index.js#L89

I managed to get the BlockBreadcrumb component working by adding it within the `BlockEditorProvider`[(here)](`EditorHistoryRedo`) however when I tried to do this for the `EditorHistoryUndo` & `EditorHistoryRedo` components we're back to...

Ok thanks. The code is public although it's within a Rails engine and so far the only change I've made to the tutorial (excluding block additions and customizations) is adding...

Quick update on this - I've been using @getdave #15 changes to add undo/redo functionality and it's working great! Only thing that is missing are the keyboard shorts for undo...

This is fixed in master but a release hasn't been cut for it. As a work around you can call `initWiceGrid()` yourself; ``` document.addEventListener("turbolinks:load", function() { initWiceGrid(); }); ```