Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Useful Tips (NEW)
    Log in to post

    Useful Tips (NEW)

    • Things end users care about but programmers don't
      • qyloxe  

      8
      2
      Votes
      8
      Posts
      55
      Views

      @turigeza said in Things end users care about but programmers don't: @qyloxe Interesting : ) Thank you! So have you done UNDO / REDO before with a relational database ? Did it work well for you ? yes, many times, BUT it of course depends on the definition of undo The most “classic” undo/redo is in banking systems. There is a concept of transaction log, every event has a date, a money transfer, a source, destination and if you want to make a undo, then you just replay needed transaction (banking not db) with opposite value sign. There were apps where in some domains the undo were beneficial and where this behaviour was implemented by record version history. It works very well when you do not need to undo many inter-table connections. As a matter of fact, I implement very, very often the record version history and operations log for almost every table. It is beneficial in long run. And there are some tables, where it is possible to model the reality in such a way, where the actions and states of the records in those tables mimics the finite state machines. I do prefer and strongly recommend using this technique in relational tables. Imagine that you have a table “Users”. You can add a column “status” with such possible values: “N” - new, “P” - in process of registration, “C” - registration cancelled, “Z” - user active, “B” user blocked, “U” - user deleted. There are possible transitions (just as example): N->P P->C P->Z Z->B Z->U If you have a table with versions of this table, than every update to users table would insert last version (automatically by trigger) to your version table. You have full log, full operations register, full info about who did what and when and… undo/redo possibility. FSM (finite state machines) gives you guarantee, that your system, as a whole, will always be in determined and correct state. Oh, this is my main modelling/architecture concept which works in most situations. It is of course only a tip of the iceberg, but I’m sure it is somewhat obvious, because all this is described and known from many years.
    • Quasarians in Action #9. With Staff Pick of the Week!
      • s.molinari  

      4
      1
      Votes
      4
      Posts
      213
      Views

      M

    • How to get the Quasar docs to run offline?
      faq-general • • s.molinari  

      3
      4
      Votes
      3
      Posts
      100
      Views

      The answer is the first thread post. Read above and follow the instructions. Scott
    • Quasar e Apex Charts [Sample application]
      • patryckx  

      8
      3
      Votes
      8
      Posts
      660
      Views

      UPDATE Example
    • Getting started with Quasar Framwork video tutorial
      • codeguru.io  

      2
      0
      Votes
      2
      Posts
      20
      Views

      Another nice video. Looking forward to seeing the series progress. I’ve added a couple of notes in a comment on the video
    • Quasarians in Action #8! With Staff Pick of the Week.
      • s.molinari  

      2
      3
      Votes
      2
      Posts
      265
      Views

      Great work team and community!
    • T

      Table Component Error
      • T.Kevin  

      2
      0
      Votes
      2
      Posts
      25
      Views

      Thanks for bringing this to our attention. We’ll look into it right away.
    • Quasarians in Action #7! With Staff Pick of the Week.
      • s.molinari  

      1
      1
      Votes
      1
      Posts
      53
      Views

      No one has replied

    • Quasar Framework + Speech API
      • patryckx  

      6
      1
      Votes
      6
      Posts
      189
      Views

      G

      Hi! I tried to re-use the idea in one application that search prices. Everithing is Ok under DEV mode at the copmuter browser but do nothing when the app is into the device, can anybody help me? thank you
    • Quasarians in Action #6! With Staff Pick of the Week.
      • s.molinari  

      1
      2
      Votes
      1
      Posts
      347
      Views

      No one has replied

    • D

      How to compile SCSS to CSS and load the CSS code as string into a variable? **Solved**
      • ddenev  

      5
      0
      Votes
      5
      Posts
      71
      Views

      D

      An update to the solution has been added above
    • Drag And Drop
      • lalo.dev  

      12
      1
      Votes
      12
      Posts
      1645
      Views

      S

      Currently not working on MacOS Safari so … not a real option yet but a great start https://quasar-app-extension-draggable.netlify.com/#/
    • Quasarians in Action #5! With the Staff Pick of the Week.
      • s.molinari  

      3
      5
      Votes
      3
      Posts
      116
      Views

      Nicely done all!
    • Quasarians in Action #4 with Staff Pick of the Week
      • s.molinari  

      1
      3
      Votes
      1
      Posts
      78
      Views

      No one has replied

    • Quasarians in Action #3 with Staff Pick of the Week
      • s.molinari  

      1
      4
      Votes
      1
      Posts
      366
      Views

      No one has replied

    • J

      pdfmake insert image
      module image statics pdf • • jmg1340  

      2
      0
      Votes
      2
      Posts
      212
      Views

      No one has replied

    • Quasarians in Action #2 with Staff Pick of the Week
      • s.molinari  

      2
      5
      Votes
      2
      Posts
      384
      Views

      I just love this as it shows just how much the community cares and willing to dig in and help with issues.
    • Quasarians in Action! With the Staff Pick of the Week.
      • s.molinari  

      1
      7
      Votes
      1
      Posts
      429
      Views

      No one has replied

    • M

      beautiful admin template
      • mbTolou  

      1
      0
      Votes
      1
      Posts
      144
      Views

      No one has replied

    • FAQ Gold Nuggets on Discord
      faq-gold-nugs • • s.molinari  

      2
      6
      Votes
      2
      Posts
      169
      Views

      Starting a new page. How to fix an "Unexpected end of JSON input while parsing near " error Scott