Quick and cool implementation. Even better as hoped for after reading the survey results. Great job, keep it up!

Posts made by SB
-
RE: New features in the Docs!
-
RE: q-table sorting order using mutated vowels
@dobbel, @beets Thank you for your replies. In my case
sort: (a, b) => a.localeCompare(b, 'de')
is the solution.
-
RE: q-table sorting order using mutated vowels
@dobbel Data is fetched via GraphQL, column name is
name
. In my caseQTable
andQSelect
using the same data source. ForQTable
sorting is set bypagination: { sortBy: 'name', descending: false }
. Here is the result forQTable
:Here is the proper result for
QSelect
: -
q-table sorting order using mutated vowels
Is there a way to set proper lexical order in q-table for UTF-8 strings with mutated vowels using props or do I need to set an explicit method for sorting? If so, is a reviewed solution available?
-
RE: Company profile template made using Quasar Framework
Looks realy great - good job!
-
RE: Vue apollo configuration with caching for ssr pwa mode(Solved)
@s-molinari - I’m using
@quasar/quasar-app-extension-graphql": "^1.0.0-alpha.1
. After your reply I have a look at the extension on https://libraries.io/npm/@m8a%2Fquasar-app-extension-graphql and it seems thatapp-extension-apollo
is the replacement.
Is this true? If so, can you explain the differences? -
RE: Vue apollo configuration with caching for ssr pwa mode(Solved)
@wolfiton
I’m using the extension with postgraphile (PostgreSQL + GraphQL) in SPA since 9 months. No problems. -
RE: How can I loop through an array variable in the data section under <script>?
@felice
Just try this:this.tableData.forEach((item) => { console.log('name: ', item.name) console.log('frequency: ', item.frequency) console.log('prescription: ', item.prescription) }
-
How to build a news ticker?
I want to build a news ticker for our public displays showing breaking news. A message should slide from right to left as known from news TV. Are there any code examples available?
-
RE: Error messages in console using QPdfviewer
I created a new project with
quasar create <project>
.
Then I added QPdfviewer withquasar ext add @quasar/qpdfviewer
.
Still the same.quasar v1.5.4 / quasar/app v1.3.3
-
RE: Error messages in console using QPdfviewer
After removing
yarn.lock
,node_modules
andyarn install
I still got the same error messages.quasar v1.5.3 / quasar/app v1.3.1
-
RE: Error messages in console using QPdfviewer
@Hawkeye64
Here are some additional infos:There was an older version of QPdfviewer installed in my project.
After reading your hints on installing QPdfviewer in this case I performeduninstall
andre-install
of QPdfviewer.
This didn’t solve the problem. -
RE: Q-table __index return undefined
Here is an example from my code.
I changedthis.tableData[this.selected[0].__index]
tothis.tableData[this.tableData.indexOf(this.selected[0])]
Maybe this will help you?