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. inetto
    I
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 9
    • Best 1
    • Groups 0

    inetto

    @inetto

    1
    Reputation
    208
    Profile views
    9
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    inetto Follow

    Best posts made by inetto

    • Cookies.remove doesn't work in Firefox ...

      … But it works in Chrome

      Im using the Cookies component from Quasar v0.14
      Trying to remove by name using Cookies.remove(‘JSESSIONID’)

      I remove it in logout calling removeCookies ()
      After remove the cookies the page goes to login page
      But … i try to open my system in another tab and i enter without a new login 😞

      In chrome it doesn’t work like this …

      posted in Help
      I
      inetto

    Latest posts made by inetto

    • Cookies.remove doesn't work in Firefox ...

      … But it works in Chrome

      Im using the Cookies component from Quasar v0.14
      Trying to remove by name using Cookies.remove(‘JSESSIONID’)

      I remove it in logout calling removeCookies ()
      After remove the cookies the page goes to login page
      But … i try to open my system in another tab and i enter without a new login 😞

      In chrome it doesn’t work like this …

      posted in Help
      I
      inetto
    • q-dialog-select with chips not working

      Hey guys … take a look. This is my code

      <template>
        <div>
          <!-- With Checkboxes -->
          <q-dialog-select
            multiple
            v-model="multipleSelect"
            :options="selectOptions"
            ok-label="Selecionar"
            cancel-label="Desfazer"
            title="Sobre o que você deseja falar"
          />
        </div>
      </template>
      <script>
        export default {
          data () {
            return {
              selectOptions: [
                {
                  label: 'Arborização',
                  value: 'goog'
                },
                {
                  label: 'Asfalto',
                  value: 'fb'
                }
              ],
              multipleSelect: true,
              chips: true,
              title: 'teste'
            }
          }
        }
      </script>
      

      i got an error in my console: q-option-group: model should be array in your case

      the chips with the value that i selected in select input dont appear

      posted in Help
      I
      inetto
    • RE: Checkbox eraseing value selected on q-data-table

      hmmmmmmmm thanks friend. so … im waiting for.
      @leon

      posted in Help
      I
      inetto
    • RE: Checkbox eraseing value selected on q-data-table

      @benoitranque as intended? maybe i didnt explained so well.
      i have a big list paginated in my datatable… if i choose an item from page one and another from page 2 it means i want two itens and not olnly one. i need to solve this problem with checkbox from q-data-table

      posted in Help
      I
      inetto
    • RE: Checkbox eraseing value selected on q-data-table

      sure, im using q-data-table …
      i have a list of things in my dataTable.
      in my page 1 i select one checkbox
      i go to my page 2 and then i decide to go back to page 1 and the checkbox that i selected in page 1 its not selected anymore.

      in q-data-table config i use selection: ‘multiple’ to select multiple checkbox …

      posted in Help
      I
      inetto
    • Checkbox eraseing value selected on q-data-table

      Hey you … when i select a checkbox in a list and after press forward ou back in pagination from datatables, the value that i selected is erased. i think is a problem whith q-data-table … what do you think?

      posted in Help
      I
      inetto
    • RE: whats the difference by hot heload (webpack) and refresh the page (F5)

      thanks for you help @spectrolite !!
      i have another question to solve my case … my api is called in

      mounted () {
      this.getListaEmailsFuncionais()
      },

      and i get the user’s info to get the results by DB in

      computed: {
      …mapGetters([‘getUsuarioLogado’])
      },

      so … i think that in life cycle vuejs mounts the component first and the computed() comes after … so, my api doest receive the value to bring the results and then mount the list correctly. what do you think?

      posted in Help
      I
      inetto
    • whats the difference by hot heload (webpack) and refresh the page (F5)

      If i refresh the page this code:

      computed: {
      …mapGetters([‘getUsuarioLogado’])
      },

      doesn’t get the value … but if i change something in my code its got the value. Strange, isn’t it?

      Thanks

      posted in Help
      I
      inetto