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. filipec
    F
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 5
    • Best 0
    • Groups 0

    filipec

    @filipec

    0
    Reputation
    3
    Profile views
    5
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    filipec Follow

    Latest posts made by filipec

    • RE: Row with 2 50% cols (space between them)

      I solve my problem with:

                          <div class="row">
                              <div class="col-md-6">
                                  content1
                              </div>
                              <div class="col-md-6 q-pl-sm">
                                  content2
                              </div>
                          </div>
      

      Thanks @metalsadman

      posted in Help
      F
      filipec
    • RE: Row with 2 50% cols (space between them)

      thanks @metalsadman i’ve do your alteration, but it stays the same: (

                          <div class="row justify-between">
                              <div class="col-md-6">
                                  <q-input filled dense v-model="name" label="Name" readonly />
                              </div>
                              <div class="col-md-6">
                                  <q-input filled dense v-model="email" label="Email" readonly />
                              </div>
                          </div>
      posted in Help
      F
      filipec
    • Row with 2 50% cols (space between them)

      Hi all,
      I need to put some same between 2 columns (50%) but dont figure how 😞

      My code with no luck:

      <div class="row">
        <div class="col col-md-6">
          Some content....
        </div>
        <div class="col col-md-6">
          Some content2...
        </div>
      </div>
      

      Any tip?

      Thank you

      posted in Help
      F
      filipec
    • RE: QToggle "on change" event

      @tof06 it works!

      Thank you

      posted in Help
      F
      filipec
    • QToggle "on change" event

      Hi all,
      I have a datatable where i need to place a toggle button (active/inactive) on each row.
      When one toggle change his value i want to call a method that will update that record/status on the database.
      What toogle event that i need to call?
      I’ve tried:

      <q-toggle @toggle="update(props.row.__index)" v-model="props.row.status"  />
      

      With no success.
      Thank you!

      posted in Help
      F
      filipec