Tagged Questions
The enable tag has no wiki summary.
13
votes
6answers
19k views
How to programmatically enable GPS in Android Cupcake
I'm currently writing an app in Android that works with the GPS, at the moment I'm able to work out whether the GPS is enabled, my problem is that I want to enable the GPS on app startup if it is ...
6
votes
5answers
1k views
JLabel not greyed out when disabled, when HTML text displayed
How do I get a JLabel displaying a HTML string to appear greyed out (which is the behaviour of JLabels that don't display HTML text)? Is there another way than actually changing the colour myself by ...
5
votes
4answers
4k views
Tomcat failed to shutdown
When I add the following Java options to enable debugging:
JAVA_OPTS="$JAVA_OPTS -noverify -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005"
I ...
4
votes
2answers
495 views
Flags to enable thorough and verbose g++ warnings
Often in C under gcc, I will start with the following set of warning flags (painfully assembled from multiple sources):
-Wall -Wextra -Wformat-nonliteral -Wcast-align -Wpointer-arith ...
4
votes
2answers
4k views
iPhone Wi-Fi Manager SDK
I'm attempting everal methods trying to enable/disable Wi-Fi (toggle). Here are some things I am trying:
//Enable
WiFiManagerClientEnable(WiFiManagerClientCreate(kCFAllocatorDefault, 0));
//Disable
...
4
votes
5answers
11k views
jquery link tag enable disable
I want to disable the link during onloading, for the code given below
<span id="addlink">"<%= f.add_associated_link('Add Task', @project.tasks.build, :class=>"add") %></span>
...
3
votes
3answers
93 views
Toggle read-only in Java
Is there a way to toggle a read-only mode so when you click any object in your window it simply returns what you clicked, ignoring the object's usual event handling? IE, while in this "read-only" ...
3
votes
1answer
495 views
3
votes
1answer
2k views
Post data to server in android
I want to send some data to server through POST method in android. I am using the following code
DefaultHttpClient hc=new DefaultHttpClient();
ResponseHandler <String> res=new ...
3
votes
3answers
4k views
Android: mass enable/disable buttons
I have Activity where bunch of buttons are placed inside TableLayout not unlike a dial pad. During some operations I need temporarily disable the buttons. To my unpleasant surprise doing ...
3
votes
2answers
3k views
Android: How to enable my button back if EditText is not empty?
I have 2 EditText01 and 02. My button will be disable once the activity is started. And when these two EditText box got text inside, the button have to be enabled back. However my button is always ...
2
votes
1answer
241 views
Xcode 4: Can't use Enable Guard Malloc due to dylib error for iPad simulator
In Xcode 4.x I've edited my Run scheme to 'Enable Guard Malloc' since I have a nondescript malloc error I need to track down. I'm aware I need to run in the simulator to use this feature. However, ...
2
votes
2answers
552 views
C# javascript enable/disable checkboxes
I have some checkboxes dynamically created in C# codebehind. Let's say two columns. This works fine.
I want the checkboxes in the left column to enable/disable those in the right upon check. I do ...
2
votes
1answer
458 views
how to disable part of uisegment control?
Following is the code for UISegmentedControl
UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObjects: [UIImage imageNamed:@"down.png"], [UIImage ...
2
votes
3answers
883 views
iPhone - Navigation bar Back button item is not responding
I have a fullscreen modalView called like this :
The modalView is called with :
PreferencesController *nextWindow = [[[PreferencesController alloc] initWithNibName:@"Preferences" bundle:nil] ...
2
votes
2answers
213 views
Is there a way in oracle to disable/enable an unnamed constraint?
I want to disable NOT NULL constraints into a table to insert data for test but I can't find a way to disable unnamed constraints.
I found enough info to disable named constraints, but I couldn't ...
2
votes
2answers
448 views
Turn a function on or off after scrolling to bottom
I have a div with Terms and Conditions. It is a vertically scrollable div. The idea is to scroll all the way down which will all a user to then Submit (by hitting the submit button). But it is not ...
2
votes
3answers
313 views
Stuck on conditionally enable or disable input with JQuery
I am attempting to conditionally enable or disable HTML input based on the value of a variable. The "disable" part is working well, but the "enable" isn't, and I can't figure out why.
The code:
...
2
votes
2answers
3k views
WPF Enable Disable Controls
When I disable a control in WPF, like say a Menu item, like
MenuItem aMenuItem = ...
aMenuItem.IsEnabled = false;
the text in the MenuItem is still active, that is it is not grayed out as you would ...
2
votes
1answer
480 views
Client side javaScript to toggle a dropdownlists effects reversed on postbacks?
I have the following JavaScript to toggle a dropdownlists in a ASP.NET page , which gets called when I click a button. I have like 4-5 dropdownlist/Toggle button pair. Each toggle button toggles the ...
2
votes
5answers
1k views
How to enable a button when a user types into a textbox
What is the simplest way in WPF to enable a Button when the user types something into a TextBox?
1
vote
1answer
35 views
Does configuring entitlements for Mac App Store application is a must?
I am going to submit my application for Mac App Store, and I am confused about enabling entitlements.
In Apple developer guide for configuring your app for mac App store, it does not say if it is ...
1
vote
1answer
42 views
Update JMenuItem via ActionListener
I am trying to create a JMenuItem that is disabled by default, but a method can be called to enable it. Just for the moment whilst I'm testing out my code, I want the method to be called when I click ...
1
vote
1answer
109 views
Enable WYSIWYG editor for Magento custom attribute?
How can I enable the WYSIWYG editor for a custom attribute (not disimilar to short description and description) in Magento (CE 1.6.1.0)? I've found documentation showing that it should be inbetween ...
1
vote
1answer
88 views
WiX: Enable/disable button before changing focus
I just started working on an installer my company is creating and we are using WiX. During installation, we ask for the installer's name and email address. The "Next" button is disabled until both ...
1
vote
3answers
403 views
How to check whether NFC is enabled or not in android?
How can i check whether Nfc is enabled or not programmatically? Is there any way to enable the NFC on the device from my program? Please help me
1
vote
0answers
34 views
Fast question about byte-enable signals
I'm in a CPU and am playing with byte-enable signals (BUS systems). What return value do i get on reading, and how are they written if a ..'inner' byte is disabled? Below the examples..
reading
...
1
vote
1answer
147 views
.htaccess Problem - ( Turn off SSL for every page except login.php and register.php )
Options +FollowSymLinks
RewriteEngine On
# Turn SSL off for everything except login.php (register.php)
RewriteCond %{HTTPS} on
RewriteCond %{SCRIPT_FILENAME} !\/login\.php [NC]
RewriteRule ^(.*)$ ...
1
vote
1answer
161 views
Selenium - testing login doesn't enable Javascript button
I'm new to Selenium IDE. I have login form with following button functionality:
function init()
{ //attach the login validation to the password on change event
getElem("Password").onkeyup = ...
1
vote
4answers
935 views
ASP javascript radiobutton enable disable not included in postback ajax
Here is the problem. I have radiobutton group (two radiobuttons).
These guys are initialy disabled. When user click checkbox, I dynamicaliy enable radiobuttons in javascript by setting rbtn.disabled ...
1
vote
1answer
734 views
android disable screen saver
I'd like to disable screen saver while my appliction is running.
How it can be done?
Where is the best place to disable / enable the screen saver? in the first activity? in the application.java?
...
1
vote
1answer
166 views
HTML ext js fieldsets
Hi
This is my first experience with ext js and I use ext js designer tool.
I have created like 3 fieldsets each having different input format but same input for backend.
Eg search by selecting ...
1
vote
1answer
603 views
Check if user has enabled GPS after promted in Android
Plain and simple. I start an Activity and check if the phone has or not the GPS module enabled. If it isn't enabled, I prompt the user with a dialog and ask if he wants to manually enable it. On Yes I ...
1
vote
3answers
800 views
How do you gray out a “Submit” button when specific EditText boxes are empty?
Regarding an Android app I am creating:
I have three EditText boxes that need to be filled with numbers/strings. I have a submit button that will start a series of calculations.
IF any box is ...
1
vote
2answers
528 views
How to use toggle a variable from true to false
i have this setup: http://jsfiddle.net/patrioticcow/yJPGa/5/
i cant figure out how how to toggle in between a true or false variable.
here is the code:
<div class="test" id="id_test">Some ...
1
vote
1answer
465 views
Enable GlassFish Compression
hi
how to enable glass fish Compression ?
i enabled compression in http-lister properties
but no changed response
1
vote
2answers
79 views
java - I need to enable a button when clicking Ctrl+A in table
I am trying to enable a JButton when clicking "Ctrl+A" in a Jtable to select all rows, so i execute that code :
myTable.addKeyListener( new KeyListener() {
@Override
public void ...
1
vote
1answer
65 views
Dynamically create Items or allow / disallow user Actions in java swing
I have a database which contains users, roles, and permissions. I want to be able to map this to the front end (Java Swing) so a User who can't do an action can't see it.
An example:
Role ...
1
vote
3answers
224 views
C# disable listbox from parent form
I have an mdi child form as a dockable content in my application and I want to disable/enable a listbox in it from the parent form depending on a certain event. I thought this would be simple as:
...
1
vote
2answers
639 views
How to enable button to work in Android 2.1
I am a beginner in programming with Java Android.
I am currently confused with how to enable button to work in Android 2.1
My current project requires a lot of different activities to work together ...
1
vote
2answers
146 views
jquery enabling and disabling dom elements without removing
I have a form which at some point in its life has three choices. Depending on which item is checked more form elements will drop down. At the moment these are just hidden and will show/hide on click. ...
1
vote
1answer
176 views
Disable UITableViewCellAccessory
I want to disable the UITableViewCellAccessoryDetailDisclosure button for certain rows in my table. I cannot seem to find any way to do this. I tried just doing:
...
1
vote
1answer
2k views
Jquery tabs enable tab?
I am trying to enable a disabled tab in Jquery but it doesn't work I have my tabs:
<!--Jquery AJAX Tabs Start-->
<div id="signuptabs">
<ul>
<li><a ...
1
vote
1answer
1k views
iPhone CoreLocation: Give user the option to re-enable location usage for an app
If a user declines permission for an app to use the user's location data, is there a way for the user to re-enable it later? Or for me to programatically give the user the option from within the app?
...
1
vote
4answers
1k views
How can I create an Array of Controls in C#.NET?
I have a form which contains several standard controls (textbox's, buttons, etc). I want to group certain controls in collections so that I can enable and disable them at any given time without having ...
1
vote
3answers
8k views
How to enable JMX on Weblogic 10.x
I have an application that is JMX enabled. It has its own JMX Agent and some MBeans. When i launch the application in WebLogic, i am able to connect to the JMX agent via the RMI url and perform the ...
1
vote
3answers
711 views
Enable Logging Log4j for certain users
In the log4j.properties file I've set the Level to ERROR. For certain users I need to set Level to DEBUG. I was able to change the Logging Level at run time; but this will be enabled for all the users ...
1
vote
1answer
3k views
how to disable/enable network connection in c#
Basically I'm running some performance tests and don't wan't external network to be the drag factor. I'm looking into ways of disabling network LAN. What is effective way of doing it programmatically? ...
0
votes
0answers
22 views
Opposite of disableSelection function for enabling text selection for specific HTML elements
I'm using a JavaScript function called as disableSelection for preventing text selection on specific elements. Declaration of this function is here:
function disableSelection(target)
{
if (typeof ...
0
votes
1answer
22 views
Enable/disable a button in xCode 4.2
I've been searching for hours to find the code that enables/disables a button in xCode 4.2
I am trying to have an if statement inside a button that it ether enables or disables a spesific button.
...