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

    Topics created by Castris

    • Castris

      q-table with reactive i18n translations for columns name
      Framework • ith this code • • Castris

      3
      0
      Votes
      3
      Posts
      1173
      Views

      Castris

      Thanks… Work fine after create a computed propìerty for columns

      columnsI18n () { let columns = [ { name: 'domain', required: true, label: this.$t('domains.label'), align: 'left', field: row => row.domain, format: val => `${val}`, sortable: true }, { name: 'active', align: 'center', label: this.$t('domains.active'), field: row => row.active, format: val => String(!!val), sortable: true }, { name: 'show', align: 'center', sortable: false }, { name: 'edit', align: 'center', sortable: false }, { name: 'archive', align: 'center', sortable: false }, { name: 'delete', align: 'center', sortable: false } ] return columns }
    • Castris

      CORS: as been blocked by CORS policy: Response to preflight request doesn't pass access control check and Laravel 6
      Framework • • Castris

      4
      0
      Votes
      4
      Posts
      1426
      Views

      qyloxe

      Well, you can also set up a reverse proxy (openresty/nginx) and have CORS handled at that level. It would solve ALL the problems with EVERYTHING 🙂
      Where ALL==every access control request from client, and EVERYTHING==every api/rest/openapi/webservice/endpoint on backend side regardless of used technology (php, python, node, c#, etc.).