Questions tagged [disable]

504 questions
9
votes
0 answers

Is it possible to turn off error checking while i am typing in Visual Studio Code?

I am programming in C#, using Visual Studio Code. It insists on checking for syntax errors (red squiggles) while I'm typing, instead of just on save. This results in lots of "errors" that wouldn't be there if only it would wait until I'm done…
Bob Ueland
  • 1,804
  • 1
  • 15
  • 24
9
votes
1 answer

How to disable stripe form field when payment process is running?

I am implementing stripe payment feature in my angular project. I am succeed with stripe form customization. My Actual problem is start here. When User enter Card Detail and press PAY button. loader is spin inside pay button. But Still user can…
Mayur Kukadiya
  • 2,461
  • 1
  • 25
  • 58
9
votes
3 answers

How to disable security in Quarkus

I´ve implemented JWT RBAC in my Quarkus application, but I don´t want to provide tokens whenever I´m testing my application locally. EDIT: What I´ve tried so far are setting these properties to "false" without any…
Marian Klühspies
  • 15,824
  • 16
  • 93
  • 136
9
votes
1 answer

How to disable TurboLinks in Rails 6?

So I'm facing this problem where my server does actually retrieve the correct data from the client's request, sending this data to the browser where I can clearly see that its avaible for the browser (CTRL+SHIFT+C > Network > my_request). However,…
HCKRMVT
  • 355
  • 3
  • 10
9
votes
2 answers

enabling/disabling Crashlytics at runtime in iOS app

Can't seem to enable/disable Crashlytics at runtime by a method call in swift - my app is setup with firebase analytics and Crashlytics for firebase - the following call (per the Google dev website) gives me "Use of unresolved identifier 'Crash'"…
Nostradamus
  • 1,497
  • 3
  • 20
  • 34
9
votes
4 answers

How to make a readonly field that can not be edited by user in a Django forms?

I'm trying to create my first own project in python django. What I'v done so far is a simple shop. When I click this: item_details.html Kup teraz I will be…
Eliro
  • 223
  • 2
  • 4
  • 12
8
votes
2 answers

Material UI - Menu Component locks body scrollbar

I have made a dropdown menu using Material-ui Menu component. The problem is once that dropdown menu is open, the body scrollbar disappears and can not scroll over the page. I tried to find answers but there are only a few answers for Popper,…
kimiro
  • 175
  • 1
  • 2
  • 13
8
votes
3 answers

How can I make a symfony 4 command to be registered only in dev environment and disabled in prod?

In my App I have a helper class App\Command\GenerateFixturesCommand that provides a command named my-nice-project:generate-fixtures. This command consumes a service of my own project named App\Services\CatalogFixtureGenerator that generates 1000…
Xavi Montero
  • 9,239
  • 7
  • 57
  • 79
7
votes
1 answer

How to disable CORS in chrome to work with localhost and third party url on window 11 Chrome

I want to access https://third-party-url/ from my localhost But chrome is throwing cors error I am using window 11 and chrome version : Version 106.0.5249.103 which is latest version till 2022-10-10
vimal Arya
  • 71
  • 1
  • 1
  • 5
7
votes
2 answers

Visual Studio 2022 (or earlier) disable autocomplete after typing a dot (.)

How can I disable, that after typing a dot (.) Visual Studio will automatically print FileStyleUriParser? Don't get me wrong, I want the suggestions, but I don't want Visual Studio to automatically replace with the first suggestion in the list,…
Doe
  • 141
  • 6
7
votes
4 answers

How to disable the context menu on Flutter web? (right click, touch press)

How to disable the context menu in Flutter (2.x, Web / Browser) when e.g. right click or in touch long press on mobile devices (e.g. DevTools mobile view). I come from web development with Angular etc. In HTML/JS it works…
y0nd0
  • 135
  • 8
7
votes
3 answers

How can I disable literal values in Vuetify?

I am having problems when using the "item-disabled" prop on the v-select component from vuetify. I am trying to use this with literal options. Here is the snippet which reproduces the issue: In this example I would like to disable the option…
Jord
  • 235
  • 2
  • 3
  • 9
5
votes
0 answers

How do I disable the "undo code cleanup?" prompt in JetBrains Rider?

My team has configured ReSharper/Rider to automatically run code-cleanup every time we save. I save a lot, which means code-cleanup runs a lot. Every time I try to Ctrl+Z past a point where code-cleanup ran, Rider prompts me with a pop-up asking…
5
votes
1 answer

React JS How to disable zoom

Im building a web app and I want to disable the zoom with 2 fingers. I have tried this meta name="viewport" content=" width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" but is not working. The app will run on tablets. Thank you…
Solyza
  • 65
  • 1
  • 5
5
votes
5 answers

How to disable Android TV Support in my app? Manifest complaining about missing LEANBACK_LAUNCHER

I've been searching for a way to disable Android TV Support from the manifest. I know our app is incompatible and I've read that even when you aim at supporting Android TV, apps turn out unsupported anyways. However, I have not found a way to stop…
kriztho
  • 300
  • 2
  • 14
1
2
3
33 34