No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Tao
    T
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 8
    • Best 1
    • Groups 0

    Tao

    @Tao

    0
    Reputation
    217
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Tao Follow

    Best posts made by Tao

    • RE: Cannot open modal with single click followed by no response

      I also tried QDialog, and found the same issue. Also used QBtn to replace the router-link, still have the same problem.

      posted in Help
      T
      Tao

    Latest posts made by Tao

    • How can I connect Quasar-Cordova ios app to the existing tomcat service at local computer?

      The Quasar works fine for SPA at localhost:port# hosted by tomcat.

      To test the mobile app, I ran the “quasar dev -m cordova -T ios” with my iphone connected with my laptop through USB, the app was installed and also opened with the index.html. The problem is I cannot connect it to the tomcat backend running @ localhost:port#, when I make a post or get request.

      The config.xml is like this:

      <?xml version=‘1.0’ encoding=‘utf-8’?>
      <widget id=“com.xprotocol.quasar.app” version=“1.0.0” xmlns=“http://www.w3.org/ns/widgets” xmlns:cdv=“http://cordova.apache.org/ns/1.0”>
      <name>Quasar App</name>
      <description>A Quasar App</description>
      <author email="dev@cordova.apache.org" href=“http://cordova.io”>
      Apache Cordova Team
      </author>
      <content src=“index.html” />
      <access origin="" />
      <allow-intent href="http://
      /" />
      <allow-intent href="https://
      /" />
      <allow-intent href="tel:
      " />
      <allow-intent href=“sms:" />
      <allow-intent href="mailto:
      ” />
      <allow-intent href=“geo:" />
      <platform name=“android”>
      <allow-intent href="market:
      ” />
      </platform>
      <platform name=“ios”>
      <allow-intent href=“itms:" />
      <allow-intent href="itms-apps:
      ” />
      </platform>
      <plugin name=“cordova-plugin-whitelist” spec="^1.3.3" />
      <engine name=“ios” spec="^4.5.4" />
      </widget>

      What steps I need to take to make it work?

      Thanks a lot.

      posted in Help
      T
      Tao
    • RE: Cannot open modal with single click followed by no response

      After I moved the Modal into the parent page, the issue is gone. Not sure why I cannot put it into a separate component page.

      posted in Help
      T
      Tao
    • RE: Cannot open modal with single click followed by no response

      I also tried QDialog, and found the same issue. Also used QBtn to replace the router-link, still have the same problem.

      posted in Help
      T
      Tao
    • Cannot open modal with single click followed by no response

      The first click after loading the page is fine. Then I need to double click to open it. After a few times, clicking the button to open the modal is not working at all until a couple minutes, and then I can double click to open it. Not sure if something is wrong here.

      In parent:

      <router-link class=“link-with-bg” v-on:click.native=“showSignUpModal” to="/"> Sign In</router-link>
      <signup-modal v-bind:display=“signUpModalDisplay”></signup-modal>

      In child:

      <template id=“login-template”>
      <q-modal v-model=“show” :content-css="{padding: ‘20px’}">
      <div class=“q-display-1 q-mb-md”>Modal</div><p>This one gets displayed from .</p>
      <q-btn color=“orange” @click=“show = false” label=“Close” />
      </q-modal>
      </template>

      <script>

      import {QModalLayout} from 'quasar'
      
      export default {
          
          props: {
              display: {
                  type: Boolean,
                  required: true
              }
          },
          data: function () {
              return {
                  show: null
              }
          },     
          computed: {
              
          },
          components:{
              QModalLayout,
          },
          methods: {
              
          },
          watch: {
              display: function(){
                  this.show = this.display
              }
          }
      }
      

      </script>

      posted in Help
      T
      Tao
    • RE: [0.15.x] Error in loading index.html : "because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled"

      Just found out that was due to the setting of the path to static web content was incorrect. Fixed it already.

      posted in Help
      T
      Tao
    • [0.15.x] Error in loading index.html : "because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled"

      Got the error in loading the js files.

      0_1523377910052_609ea97c-266c-44fc-bc98-ed510d05d8dd-image.png

      And this is the manifest.xxx.js file:

      0_1523378013146_6bb459a3-194b-4a4b-95ba-9f38314512b3-image.png

      posted in Help
      T
      Tao