Mark Donnellon

Results 14 comments of Mark Donnellon

I made a component (MultiTree) based on @atlaskit/tree for rendering multiple lists with tree structures. This came about since @atlaskit/tree was almost perfect for what I was building, except it...

@xuxuzhang1994 This didn't get completed :( #131 means rbd doesn't quite fit our requirements and we have an implementation that behaves more like trello and doesn't support dragging sub-items 😭.

@karellm I'm definitely looking forward to updating major versions of dependencies for the project I'm working on. Are you saying 4+ supports this feature? 😁

``` if($("option[value='"+selectVal+"']",this.ui.select).length > 0){ this.ui.select.val(selectVal); this.ui.select.data("combobox").refresh(); this.ui.select.data("combobox").triggerChange(); } ``` Thanks @KevinPan. I had something listening for selection and calling triggerChange() triggered the event for me. this.ui.select is my jQuery element...

This plugin already supports WKWebView. Are you sure you've configured your Cordova project to use WKWebView? Maybe it's changed since I last looked, but a new Cordova project will run...

If you're sure it's this plugin, I would have a look at the more recent forks here: https://github.com/TruckMovers/cordova-plugin-remote-injection/network to look for anyone what has already fixed the issue. If it's...

@mkdevel it would be very good of you to fork the repository and commit the changes you've made to help others that find this issue. Or just provide more details...

An example from your code might help, but you might be trying to use the plugin before it's ready. I'm reasonable sure you need to wait for the `deviceready` event...

In a normal cordova app, you have control over when cordova.js is added, so essentially it's available immediately. For a remote page running in cordova without this plugin cordova will...

Actually, I only spent the time investigating this after `req.body.toString()` started throwing a very similar error :( Just accessing `req.body` at all throws the same error. I can refactor the...