Tagged Questions
The disable tag has no wiki summary.
60
votes
2answers
30k views
How to disable an input with jQuery?
$input.disabled = true;
or
$input.disabled = "disabled";
Which is the standard way?
And,reversely,how to enable an input?
58
votes
7answers
17k views
Disable, but not uninstall Resharper 4.x onwards
Any ideas on how to disable, but not uninstall Resharper 4.x or above?
39
votes
5answers
77k views
jQuery disable a link
Anyone know how to disable a link in jquery WITHOUT using return false;?
Specifically, what I'm trying to do is disable the link of an item, performing a click on it using jquery which triggers some ...
23
votes
6answers
13k views
Disable DTD warning for Ant scripts in Eclipse?
I'm using Eclipse Ganymede. Everything works fine, but I have an anal-retentive yearning for a warning-free Problems tab. Right now it (correctly) complains about my Ant scripts: "No grammar ...
15
votes
2answers
2k views
Disable drag&drop in solution explorer
Is there a way to disable the drag&drop functionality for Solution Explorer?
Why would you ask? I'm using an wacom pen tablet for quite some years and I love
it. But when you use it in solution ...
14
votes
5answers
3k views
How to disable Safari Reader in a web page
I'm curious to know more about what triggers the Reader option in Safari and what does not. I wouldn't plan to implement anything that would disable it, but curious as a technical exercise.
Here is ...
12
votes
14answers
33k views
Disable Copy/Paste into HTML form using Javascript
Is there a way using Javascript to disable the ability to paste text into a text field on an HTML form?
E.g.
I have a simple registration form where the user is required to input their email twice. ...
11
votes
6answers
455 views
How does Stackoverflow's “Post Your Question” button stay disabled until question gets submitted?
I am using asp.net webforms; I want to submit a form and keep the button disabled until it gets saved to my database, exactly like Stackoverflow. Any suggestion?
protected void Lb_Save_Click(object ...
9
votes
2answers
2k views
Can you Disable DDMS in Eclipse
Does anyone know if it is possible to disable the DDMS in Eclipse? By that I mean DDMS should not being start when Eclipse is launched.
I'd like to use only the DDMS from the terminal, but when I ...
9
votes
8answers
9k views
JQuery: Disable 'X' button in top-right of Dialog
I'm trying to make a dialog that requires a user to agree to terms before continuing, and don't want to allow the user to just click the 'X' in the top right corner of the dialog to close. I'd like to ...
9
votes
3answers
717 views
Disable assertions in Python
How do I disable assertions in Python? That is - if it fails, I don't want it to throw an AssertionError, but to keep going.
9
votes
3answers
3k views
Can I disable exceptions in STL?
I want to disable exceptions in my C++ aplication, compiled under MSVC. I hve switched the option Enable C++ exceptions to NO, but I get warnings telling me to use the option /Ehsc, which I dont want ...
8
votes
5answers
25k views
jquery disable/enable submit button
i have this hmtl:
<input type="text" name="textField" />
<input type="submit" value="send" />
how can i do something like this:
-when the text field is empty the submit should be ...
7
votes
4answers
4k views
Prevent selection in HTML
I have a div on a HTML page and whenever I press the mouse and move it, it will show that "can't drop" cursor like it selects something. Is there a way to disable selection? I tried CSS user-select ...
7
votes
8answers
7k views
Disable backspace in textbox via javascript
I have a textbox which is extended by an Ajax Control Toolkit calendar.
I want to make it so that the user cannot edit the textbox and will have to instead use the calendar extender for input.
I ...
7
votes
7answers
2k views
How do I disable Tortoise BZR?
I'm a huge fan of bzr and I'm glad they're working on tortoise for it, but currently it's WAY too slow to be useful. The icons are almost always incorrect and when I load a directory in explorer with ...
6
votes
2answers
124 views
Disable/suppress tcltk prompt in R
My question is similar to a question previously posted but never really answered here:
Disable GUI, graphics devices in R
I do not like the R tcltk popups for CRAN mirror selection. They also pop up ...
6
votes
3answers
424 views
HTML Select with disabled Option returns wrong selectedIndex in FireFox
I have a Select with a disabled Option wich is the default selected one:
<select name="select" size="1">
<option>0</option>
<option selected disabled>1</option>
...
6
votes
2answers
7k views
change text of button and disable button in iOS
How do you change the text of the button and disable a button in iOS?
6
votes
3answers
958 views
Rails 3: Disable session cookies
I created a controller to serve dynamic stylesheets, so I can use the image_tag helper and add some cache control.
The problem is that every time the css file is loaded at the browser, I can see ...
6
votes
2answers
2k views
Disable VS' “downloading public symbols”
When I debug my ASP.NET webapp in VS2010, a dialog appears with the title "Downloading public symbols".
How do I instruct Visual Studio not to attempt this?
6
votes
4answers
3k views
Disabling iPhone screenshot feature
I'm working on an enterprise iPhone application for a client, the issue at hand is customer information will show up on the phone. My client is worried that the information could be caught using the ...
6
votes
1answer
6k views
Simple Javascript question: How do I prevent scrolling with arrow keys but NOT the mouse?
See title. Since I'm using jQuery, any solution via. that would work too. Ideally, I'd like to know both, though. I already have the arrow keys bound to another function on my page (via. jQuery), ...
6
votes
3answers
5k views
disable cache for some images
I generate some images using a PHP lib.
Sometimes the browser does not load the new generated file.
How can I disable cache just for images created dynamically by me?
Note: I have to use same name ...
5
votes
3answers
64 views
Block script in IE
I have a fancy script that is nice, but not essential and surprise surprise, doesn't play nice with IE.
How do I 'comment it out' for IE?
I know I can use the following to include statements for IE, ...
5
votes
1answer
195 views
How to stop Magento requiring two product descriptions?
I read somewhere that you can stop Magento from requiring two product descriptions... this would suit me to the ground, since I'm adding a lot of products to our store that are just basic things with ...
5
votes
3answers
489 views
jQuery Disable All Redirections (Links, Form Submissions, window.location changes etc)
Is it possible to use javascript to disable any code that would take the browser away from the current page?
I have tried the following code but it didn't work:
$(window).unload(function(e){
...
5
votes
1answer
239 views
Disabled Left Click (for Psych Experiment), but focus changes in IE. How to prevent?
I am conducting some Psych experiment on web design, and I want to disable both mouse clicks. (Please ignore usability issues. I know about them. I intentionally do this for the purpose of my psych ...
5
votes
2answers
1k views
Jquery disable link for 5 seconds
I have this code:
$('#page-refresh').click( function() {
$.ajax({
url: "/page1.php",
cache: false,
dataType: "html",
success: function(data) ...
5
votes
3answers
3k views
Android: Disable highlighting in GridView
How can I turn off the orange highlight when clicking an item in a GridView?
I haven't been able to find a solution in the documentation or through testing.
5
votes
3answers
634 views
Disabling buttons problem on C#
Ok so I'm trying to move items from one listbox to another by using multiple buttons i.e
I have 2 buttons cmdRight and cmdRight2 which are both disabled on form load
If the user selects a single ...
5
votes
4answers
8k views
To disable a send button if fields empty by jQuery
How can you disable the send -button if there is one or more input -fields empty?
My attempt in pseudo-code
if ( $("input:empty") ) {
$("input:disabled")
}
else
// enable the ask_question ...
5
votes
2answers
2k views
Disable spell checking on IntelliJ IDEA
I'm trying - since almost an hour - to disable spell checking in MacOS's IntelliJ IDEA version 8.1. I hate to say: it's a very stupid question: how do I get rid of it? :-)
Does someone know that?
...
5
votes
5answers
4k views
Does Firebug have something built-in to disable all javascript for a site/page?
Does Firebug have something built-in to disable all javascript for a site/page?
4
votes
2answers
57 views
radiobutton disable after 10 seconds
I have a problem with disabling my radiobuttons.
I generate some options from my mysql db with php like this:
<input type=\"radio\" name=\"answer\" id=\"answer\" ...
4
votes
2answers
2k views
disable all form elements inside div
is there a way to disable all fields (textarea/textfield/option/input/checkbox/submit etc) in a form by telling only the parent div name in jquery/javascript?
4
votes
2answers
2k views
how to disable a tab in android screen?
hi can you tell me how to disable a tab in the UI of android code.. (eclair code)
4
votes
1answer
397 views
Is there a flag you can set to disable auto suggest behavior for an HTML field on iPad/iPhone/Android/etc
For desktop browsers I can set this on a field to disable the auto-completion list based on recent entries.
<input type="text" name="username" autocomplete="off"/>
...
4
votes
2answers
3k views
Disable home button in android toddler app?
I've developed and app that is a slide show of pictures which each play a sound when you tap them. It's like a picture book for ages 2-4.
The problem is, since android won't let you capture a home ...
4
votes
0answers
490 views
HTML / JAVASCRIPT : Disable HTML in contentEditable=true [closed]
Possible Duplicate:
HTML / JAVASCRIPT : Disable HTML CONTENT in contentEditable=true
I want to know how to disable or control html elements, tags and drag and drop, image resizing and all ...
4
votes
1answer
2k views
How to disable radiobuttons and checkboxes produced by HtmlHelper methods in ASP.NET MVC?
I have a series of pages (in a wizard type application). After collecting user's inputs here and there, I'd like to display a summary in a single page. I don't want the users to modify information on ...
4
votes
2answers
464 views
Disable everything in windows except program c#
I've got the following question:
Is it possible te disable everything in windows except the program it's running?
I need to program an application on a touchscreen (fullscreen), where people can ...
4
votes
1answer
3k views
WPF TextBox trigger to clear Text
I have many TextBox controls and I'm trying to write a style that clears the Text property when the Control is disabled.
I don't want to have Event Handlers in code behind.
I wrote this:
<Style ...
4
votes
8answers
16k views
How to disable cache in InternetExplorer 8
How can I disable cache in IE8 ?
We are doing Javascript development and testing it in IE8, but we have to clear the cache every time we make changes to the Javascript files.
4
votes
2answers
1k views
Disable autocomplete on textfield in Django?
Does anyone know how you can turn off autocompletion on a textfield in Django?
For example, a form that I generate from my model has an input field for a credit card number. It is bad practice to ...
4
votes
1answer
1k views
disable event-bubbling c# wpf
I'm having the following problem:
When I got two labels into each other:
<Label x:Name="First" MouseUp="Label_MouseUp">
<Label x:Name="Second" MouseUp="Label_MouseUp_1">This is a ...
4
votes
4answers
982 views
How to disable stack trace generation in a java program?
I want to disable the stack trace getting generated when an exception is thrown.
I have used,
Runtime.getRuntime().traceInstructions(false);
Runtime.getRuntime().traceMethodCalls(false);
but ...
4
votes
1answer
308 views
How can I disable an <option> in a <select> based on its value in JavaScript?
I have a <select> with a number of <option>s. Each has a unique value. I need to disable an <option> with a given defined value (not innerhtml).
Anyone have an idea how?
4
votes
2answers
437 views
C++ Disabling warnings on a specific include
I'm wondering if there's a way to disable all warnings on a specific file (for example, using a preprocessor directive).
I'm using CImg.h and I want to get rid of the warnings involving that code.
...
4
votes
4answers
2k views
Why does Disabled = true for html work?
I noticed in our code that there is a disabled = ture' i the source code for anchor tag. I was wondering why it works in IE. I also searched the internet and it is also being used in a lot of source ...