Alan Spurlock

Results 19 comments of Alan Spurlock

Good question! My namespaced modules are not being fired.

So I commented out the deletes in clonedBlocks.map inside exportScene. Everything seems to work fine. Will this cause any problems?

I updated that block of code and still get the same error `states: Ember.computed("model.client.countryId", function() { return 249 == this.get("model.client.countryId") || 54 == this.get("model.client.countryId") ? this.get("ajax").post(t.default.APP.host, { data: { frontendKey:...

@charuwts I can't find that anywhere, in any folder. When I updated that part in the javascript, it updated in console->network tab. But it says No route found for "GET...

Honestly, I rewrote this completely. Ditched ember and used Vue.JS with Vuetify. Now our client signup page is perfect.

Just create your own docks using vue with drag and drop events.

I tried the above articles too. I don't use vue3 either, but need to now. ``` const vueSimpleContextMenu = ref(null); onNodeContextMenu((e) => { e.event.preventDefault(); vueSimpleContextMenu.value.showMenu(e.event, e.node) }); const optionClicked =...

Looks like this will help you with vue3 (defineExpose). https://stackoverflow.com/questions/64889756/calling-method-on-child-component-composition-api What a pain.

I have this fully working in expo. I didn't need to do much either. The issue I am having, and you will too, is keeping the call active in the...