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. jpolstrre
    J
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 6
    • Best 3
    • Groups 0

    jpolstrre

    @jpolstrre

    5
    Reputation
    98
    Profile views
    6
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    jpolstrre Follow

    Best posts made by jpolstrre

    • RE: q-input turn off spellcheck, capitalization, autocorrect

      Well, doing tests I found a simpler solution: just put the component inside a <form> tag with the attributes you want to specify for example:

      <form  autocomplete="off">
      			<q-search size="lg"  placeholder="search" clearable color="primary" v-model.trim="filterText" />
      		</form>
      posted in Help
      J
      jpolstrre
    • RE: Q-Dialog Dragging and Scaling (Resizing)?

      For the draggable case implement a component: https://codesandbox.io/s/quirky-shannon-nfpci?fontsize=14&hidenavigation=1&theme=dark
      Because it was the functionality I needed at the time.
      In the same way it would be possible to add the resize and scale functionality (I will try when I have time).

      posted in Help
      J
      jpolstrre
    • RE: Capacitor alongside web

      testing and testing I solved them:
      it seems to me that the problem is yarn since
      capacitor also uses npx. If you use capacitor mode always use npm as package getor
      also after adding quasar add mode capacitor: go to the src-capacitor folder and do npx cap add android.

      then try:
      in pages / Index.vue
      import {Plugins} from “@ capacitor / core”
      console.log (Plugins). and I already got results.

      posted in Help
      J
      jpolstrre

    Latest posts made by jpolstrre

    • RE: Capacitor alongside web

      testing and testing I solved them:
      it seems to me that the problem is yarn since
      capacitor also uses npx. If you use capacitor mode always use npm as package getor
      also after adding quasar add mode capacitor: go to the src-capacitor folder and do npx cap add android.

      then try:
      in pages / Index.vue
      import {Plugins} from “@ capacitor / core”
      console.log (Plugins). and I already got results.

      posted in Help
      J
      jpolstrre
    • RE: Latest Capacitor + AndroidX and cordova AdMob working with quasar.

      Manifest merger failed : Attribute application@appComponentFactory value=(android.support.v4.app.CoreComponentFactory)
      from [com.android.support:support-compat:28.0.0] AndroidManifest.xml:22:18-91…

      I get it in all the capacitor project
      and I solve it like this:

      in android studio go to:
      1.Refactor/Migrate to AndroidX… ,
      once you complete the task
      2.on the bottom build click button -> Do refactor
      3. build again

      Sorry for asking here also what I want to know is how plugins are used from capacitor from: / src, when all resources are in src-capacitor.
      I can’t access let’s say from: src / pagaes / Index.vue
      import {Plugins} from “@ capacitor / core”

      I must install all the capacitor resources again in the root of the Quasar project ??. Thanks for answering

      posted in Useful Tips (NEW)
      J
      jpolstrre
    • RE: Capacitor alongside web

      I have the same problem, you can’t even access the default plugins that come with capacitor from the src / pages / index.vue views since the plugins are in src-capacitor / node_modules: in the capacitor api examples clearly shows that import {Plugins} from “@ capacitor / core” but this is not possible for the above mentioned. How can capacitor resources be used from src if Qusar creates a subfolder src-capacitor ??

      posted in Help
      J
      jpolstrre
    • RE: Q-Dialog Dragging and Scaling (Resizing)?

      For the draggable case implement a component: https://codesandbox.io/s/quirky-shannon-nfpci?fontsize=14&hidenavigation=1&theme=dark
      Because it was the functionality I needed at the time.
      In the same way it would be possible to add the resize and scale functionality (I will try when I have time).

      posted in Help
      J
      jpolstrre
    • qtable whit virtual-scroll v-slot top-row or top-bottom not working

      In my configuration q-table :

        <q-table
            class="my-sticky-header-column-table-caja"
            dense
            :data="cajaFilterDateData"
            :columns="columns"
            :filter="filter"
            :filter-method="filterCaja"
            row-key="name"
            :rows-per-page-options="[0]"
            :pagination.sync="pagination"
            flat
            bordered
            separator="cell"
            table-header-class="bg-orange text-white"
            virtual-scroll
          >
            <template v-slot:top-row>
              <q-tr>
                <q-td colspan="100%">Top row</q-td>
              </q-tr>
            </template>
      
            <template v-slot:bottom-row>
              <q-tr>
                <q-td colspan="100%">Bottom row</q-td>
              </q-tr>
            </template>
      

      display:table whit  virtual-scroll
      Only working whitout virtual-scroll prop:

       <q-table
            class="my-sticky-header-column-table-caja"
            dense
            :data="cajaFilterDateData"
            :columns="columns"
            :filter="filter"
            :filter-method="filterCaja"
            row-key="name"
            :rows-per-page-options="[0]"
            :pagination.sync="pagination"
            flat
            bordered
            separator="cell"
            table-header-class="bg-orange text-white"
          >
            <template v-slot:top-row>
              <q-tr>
                <q-td colspan="100%">Top row</q-td>
              </q-tr>
            </template>
      
            <template v-slot:bottom-row>
              <q-tr>
                <q-td colspan="100%">Bottom row</q-td>
              </q-tr>
            </template>
      

      Display correctly:
      alt text

      How can I solve the problem or get the desired result?
      Thank you.

      posted in Framework
      J
      jpolstrre
    • RE: q-input turn off spellcheck, capitalization, autocorrect

      Well, doing tests I found a simpler solution: just put the component inside a <form> tag with the attributes you want to specify for example:

      <form  autocomplete="off">
      			<q-search size="lg"  placeholder="search" clearable color="primary" v-model.trim="filterText" />
      		</form>
      posted in Help
      J
      jpolstrre