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. wesleysmith1
    W
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 3
    • Best 0
    • Groups 0

    wesleysmith1

    @wesleysmith1

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

    wesleysmith1 Follow

    Latest posts made by wesleysmith1

    • Diaglog won't close after page is refreshed while dialog is open

      After the dialog is opened, and the page refreshed, the dialog will not close if opened again. It won’t close by clicking the space around the dialog or the buttons on the dialog.

      Here I declare the contents of the dialog:

       let dialogContent = {
            title: 'Default Settings',
            form: {
              header1: {
                type: 'heading',
                label: 'Sort courses by: '
              },
              option: {
                type: 'radio',
                model: 'opt1',
                items: [
                  {label: 'Course', value: 'opt1'},
                  {label: 'Section', value: 'opt2'}
                ]
              },
              header2: {
                type: 'heading',
                label: 'Select the default number of rows in tables: '
              },
              slider: {
                type: 'slider',
                label: 'Default rows displayed',
                min: 5,
                max: 15,
                step: 5,
                withLabel: true,
                model: 5,
                color: 'primary'
              }
            },
            buttons: [
              'Cancel',
              {
                label: 'Save',
                handler (data) {
                  Toast.create({
                    html: 'Defaults Updated',
                    color: 'white',
                    bgColor: 'grey'
                  })
                }
              }
            ]
       }
      

      and here I create the dialog:

       const dialog = Dialog.create(
            dialogContent
       )
      posted in Help
      W
      wesleysmith1
    • multiple q-layouts that toggle

      In the project i’m working on there is a q-layout with q-side-links on the left side. I have a second q-layout with q-side-links that is just a smaller version of the first with thumbnails. When one q-layout closes the other opens. Because of the multiple q-layouts there is a lot of white space left to scroll down. It appears that even though one of the q-layouts is hidden it doubles the height necessary for the page. Is there any way to prevent having this extra height because of the multiple q-layouts?

      posted in Help
      W
      wesleysmith1
    • Change hover color on q-side-link within a q-layout

      How can I change the color that is applied by default on q-side-links that are contained in a q-layout?

      posted in Help
      W
      wesleysmith1