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. JJ
    J
    • Profile
    • Following 0
    • Followers 0
    • Topics 8
    • Posts 20
    • Best 0
    • Groups 0

    JJ

    @JJ

    0
    Reputation
    10
    Profile views
    20
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    JJ Follow

    Latest posts made by JJ

    • RE: Q-BTN click. How to retrive properties in js?

      @s-molinari in yours codeplen:

      const buttons = [
        {
          id: 1,
          color: 'primary'
        },
      

      These are not q-btn properties like:

       <q-btn  name="btnname", label="btnlabel"
          >
      
      posted in Framework
      J
      JJ
    • RE: Q-BTN click. How to retrive properties in js?

      @s-molinari Nice, but in this case I have to create my custom properties. How to get natives ones like ‘name’ ?

      posted in Framework
      J
      JJ
    • RE: Q-BTN click. How to retrive properties in js?

      @s-molinari I need to know the name property of the button has been pressed

      posted in Framework
      J
      JJ
    • RE: Q-BTN click. How to retrive properties in js?

      @metalsadman I did it with no success

      posted in Framework
      J
      JJ
    • RE: Q-BTN click. How to retrive properties in js?

      @s-molinari to get a property from the q-btn (i.e. name), or any way to get it

      posted in Framework
      J
      JJ
    • RE: QSELECT dynamic model

      Yes it is defined in it’s parent component

      posted in Framework
      J
      JJ
    • Q-BTN click. How to retrive properties in js?

      I have a BTN like:

       <q-btn round dense flat icon="send" name="changepassword" @@click="changePassword">
      

      And the method changePassword:

                  changePassword(evt) {
                      let clickedButton= evt.name
                  },
      

      How to get name property (or whatever) form evt?

      posted in Framework
      J
      JJ
    • QSELECT dynamic model

      I have a QSelect whose model and options depend on a dynamic property:

      <q-item-section>
      	<template v-if="property.AvailableValues.length > 0">
      		<q-select dense                                                                    
      				  v-model="property.Value"
      				  label="test"
      				  :options="property.AvailableValues"
      				  option-value="Value"
      				  option-label="Text"
      				  options-dense
      				  map-options
      				  emit-value
      				  use-input
      				  input-debounce="0"
      				  @@filter="filterAvailableValues"
      				  @@new-value="createContentPropertyValue">
      		</q-select>
      	</template>
      	<template v-else>
      		<q-input dense v-model="property.Value" label="Property string Value"></q-input>
      	</template>
      </q-item-section>
      

      Using text box, I want to add new value if not present into the “property.AvailableValues”. To do this I have to use the event @@new-value, and push the new value into options array/list.
      But how can I do that, since options list (property.AvailableValues) is dynamic (i.e. not present in vue data)?

      posted in Framework
      J
      JJ
    • Extend UMD

      Is there a way to extend quasar UMD using components (from) without recompile it? If yes is there an exmaple?

      posted in Help
      J
      JJ
    • RE: Q-tab-panels, post form input values when tab is not visible

      https://github.com/quasarframework/quasar/issues/7147
      They say that unvisible tabs are not rendered into the DOM, so they will never be posted.

      posted in Help
      J
      JJ