Questions tagged [disable]

504 questions
2
votes
1 answer

ZScaler - cannot stop the service without passwords

I have installed a ZScaler client to be able to access my client's network remotely. I got their username and passwords and it seems it is working, but it cut off me from my network and disabled many important services (according to the client's…
Aleksandar
  • 325
  • 2
  • 11
2
votes
1 answer

How can I disable checkout date from check in date?

I have wrote a program that shows check in and checkout date. Working well but it can only disable past date. here is my code below: $(document).ready(function() { var mindate = new Date(); $("#checkin").datepicker({ showAnim: 'drop', …
2
votes
1 answer

Autofocus following tabindex and skip disabled fields

How does the cursor automatically hops to the next possible (not disabled) input field according to tabindex? I got that function (source: Focus Next Element In Tab Index ) but my cursor doesn't move automatically after input of 1 value: -…
Jessy642
  • 67
  • 8
2
votes
1 answer

Flutter: How to disable a particular tab, in TabBar

I am trying to disable a particular tab in my TabBar. For example if index is 1, I want to disable tab in index 1. I’m not able to do so. Here is TabBar Example class MyHomePage extends StatefulWidget { final String title; const MyHomePage({ …
Abir Ahsan
  • 2,649
  • 29
  • 51
2
votes
0 answers

SwiftUI Equivalent for UIKIt's AutoEnable Return Key?

Is there a SwiftUI equivalent of the UIKit setting "Auto-Enable Return Key", which disables the return key in the keyboard if nothing is in the field, but automatically enables it if there is text? Can't seem to locate this option. I simply want to…
Gallaugher
  • 1,593
  • 16
  • 27
2
votes
1 answer

flutter disable certain days of the week when showing date picker based on a list

I have a list showing days of the week. 1 is for Monday, 2 for Tuesday, 3 for Wednesday etc. List? daysOfWeek = [1,2,3]; When I use the showDatePicker how do I use selectableDayPredicate: to disable those days of the week. …
jayne
  • 21
  • 3
2
votes
2 answers

Disable submit button if validation fails

I want to disable my submit button if all three validation rules below fails otherwise disable false. Any help