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. Adagio
    A
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 7
    • Best 0
    • Groups 0

    Adagio

    @Adagio

    0
    Reputation
    1
    Profile views
    7
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Adagio Follow

    Latest posts made by Adagio

    • RE: Q-input with comma as decimal separator

      @mickey58 Haven’t seen any option to change that, sorry

      I actually ended up using a third option, maybe you could be interested in this. The v-money codepen didn’t allow null-values, which I really need as in my case there’s a huge difference when a field has the value 0 compared to null. I’m also not using it for currencies

      https://codepen.io/AnotherLinuxUser/pen/pWgOrZ

      It was fairly easy to get working with q-field

      <q-field>
      <template v-slot:control>
                      <vue-autonumeric class="q-field__native q-placeholder text-right test"
                                       :options="NumericSettings"
                                       v-model="localDataField">
      
                      </vue-autonumeric>
      </template>
      </q-field>
      

      Then in the data I have this settings object:

      NumericSettings:
                      {
                          negativeSignCharacter: "-",
                          decimalCharacter: ",",
                          digitGroupSeparator: "",
                          unformatOnHover: false,
                          selectOnFocus: false
                      },
      

      Hope this could help you a bit

      posted in Help
      A
      Adagio
    • RE: Q-input with comma as decimal separator

      I found another codepen, where it seems to work. I believe I might be able to convert this to my code

      https://codepen.io/pdanpdan/pen/KKKrwbe?editors=1011

      posted in Help
      A
      Adagio
    • RE: Q-input with comma as decimal separator

      @mickey58 @dobbel

      I forgot to mention I’m using UMD/Standalone (bashes head on wall) and as far as I can see, I don’t have the same options of making changes to quasar.conf. I can only change the settings under framework.config, but not framework.lang

      posted in Help
      A
      Adagio
    • Q-input with comma as decimal separator

      I’m searching for a way to switch the thousand and decimal separators. Like many other countries, in Denmark we are writing 1,25 instead of 1.25
      Unfortunately it seems like Q-input only accepts dot as separator

      In the documentation for Q-input there is a part about using v-money, which might be useful, but I can’t get it working anywhere. When using the code I’m getting the error “Failed to resolve directive: money”
      Obviously a reference is needed somewhere and somehow, but stupid me can’t find a way to do it

      I have created a codepen here, but I’m not sure if a solution here would also work in my code

      https://codepen.io/Adagio_B/pen/vYypEWo

      On a side note it’s a bit weird to have to use something called money, when nothing I’ll use it for has anything to do with money

      posted in Help
      A
      Adagio
    • RE: Getting started for dummies

      Btw, what is it that is ment to be used when calling those commands? So far I have used Windows cmd, but that doesn’t seem to be what is the best. I have tried to follow a tutorial where at one point they call “code .” but this doesn’t work in cmd. For some reason it seems like all tutorials are skipping that part. They all start with saying you just need to call this command, but none of them tells me where to call that command?

      posted in Help
      A
      Adagio
    • RE: Getting started for dummies

      Thanks, now it seems to install correctly 🙂

      posted in Help
      A
      Adagio
    • Getting started for dummies

      Hi
      I feel extremely dumb right now. I’m trying to follow the installation for Quasar-cli, but I’m already lost on the very first line that says “Make sure you have Node >=8 and NPM >=5 installed on your machine.”
      I guess it is talking about this, but I’m not 100% sure. I installed it and hope it’s correct

      Next step is open the Windows command prompt and run the command npm install -g @quasar/cli
      This seems to do something, so I guess I’m on the right track 😃

      Next step is to create a project folder. I’m trying to add it to my Visual Studio solution, where I want to add a new Razor Pages project, where I want to use Quasar. I’m using the following command:
      quasar create C:\Git\SolutionName\app.Razor.Ek-Pro.Net

      After answering all the questions I’m getting the following error:

      Quasar CLI · Generated “C:\Git\ekproV5\app.Razor.Ek-Pro.Net”.

      [*] Installing project dependencies …

      events.js:174
      throw er; // Unhandled ‘error’ event
      ^

      Error: spawn C:\WINDOWS\system32\cmd.exe ENOENT
      at Process.ChildProcess._handle.onexit (internal/child_process.js:240:19)
      at onErrorNT (internal/child_process.js:415:16)
      at process._tickCallback (internal/process/next_tick.js:63:19)
      Emitted ‘error’ event at:
      at Process.ChildProcess._handle.onexit (internal/child_process.js:246:12)
      at onErrorNT (internal/child_process.js:415:16)
      at process._tickCallback (internal/process/next_tick.js:63:19)

      C:\Windows\System32>

      Google doesn’t really tell me anything. Any ideas what could be wrong here? The folder I’m installing it into did exist, but was empty. The installation has added 45 files

      posted in Help
      A
      Adagio