disable

how can i disable the tooltips of the buttons on a flex 3 togglebuttonbar

Hello stackOverFlowers, I'm creating an flex 3 application with 3 togglebuttonbars. What i would like to do is disable the tooltip of the buttons on one togglebuttonbar. Does anybody know how i can access the buttons on the togglebuttonbar to disable the tooltips? I don't want to disable all the tooltips off the total application(Tool...

Android GridView Disable Highlighting

I'm trying to disable the highlighting of objects in a GridView in Android 2.2. I did find another article saying that I should set the selector to a transparent ColorDrawable, but the views in my GridView are still dimmed when I select them. I'm just using the GridView to display static objects (right now it's text, but I plan on switch...

How do I Disable a button with an image without reducing the alpha in obejective C?

After creating a round rect button, i disabled the button and the alpha of the button stays at 1 unless i reduced the alpha to 0.5 manually. But after inserting an image to the button, the alpha of the button would be set to 0.5 automatically even after setting the alpha to 1 after disabling the button. I would like to disable the butto...

Can we disabled the navigation controller of leftBarButtonItem that is back button of the view controller in iPhone?

Hi Guys, I want to disabled the default back button of navigation controller self.navigationItem.rightBarButtonItem.enabled = NO; self.navigationItem.leftBarButtonItem.enabled = NO;// not working how can we disabled here. I have done it with manually shown below, But Is there any property to disabled the default back button with just...

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 TableLayout.setEnabled(false) has no effect on the nested buttons. Am I stuck with setting each individual button or is there a nifty (better) way to ac...

Disable a form 'action' if jquery validation fails

I'm trying to finalize my webpage's shopping cart and I'm running into one final problem. There is a text box next to my 'add to cart' button that requires a specific hardware key (Fingerprint) to be entered before completing the purchase. I need to set it up so that the end-user cannot click "add to cart" until that field is validated. ...

Turn off WCF SOAP Service for Maintenance and provide friendly message

I'm hosting some SOAP services with WCF. How can I turn off these services via config for the purposes of maintenance, etc., and provide a friendly message to the service consumer with something like "The service you've requested is down for maintenance."? ...

Disable Bluetooth hardware programmatically in iOS?

How can I turn off the bluetooth hardware when I'm done with it so that my app does not drain the battery? I've seen references to private frameworks but not how to do this in a way that will not get rejected by Apple. What Framework/code do I need? ...

Disabling buttons on mobile browser once user presses enter on keypad

I am writing an application which needs the user to enter some information into a form and a submit button is provided. However, if the user presses the the "GO/Enter" button on iphone/bb/android and presses the submit button again, I will get an error because each form is associated with an unique ID and can be only submitted once. How...

Qt How to disable mouse scrolling of QComboBox?

I have some embedded QComboBox in a QTableView. To make them show by default I made those indexes "persistent editor". But now every time I do a mouse scroll on top them they break my current table selection. So basically how can I disable mouse scrolling of QComboBox? ...

Disable keyboard-shortcuts in Internet Explorer

Does anybody know how can I programmatically disable the keyboard-shortcuts in IE? For example, i have a textbox in my web page, with its value taken from a barcode reader. But the barcode contains the sequence Shift-Ctrl-J + Enter. Shift+Ctrl+J opens the IE feeds and Enter opens the selected feed in the browser, so this is a serious p...

Enable or disable the next button based on a live text control value in Wix?

I created a custom dialog page in wix and it has a text box. I want to disable the next button of the installer if the text box is empty end enable it if the user has typed a value. The following code works partially. It does not disable the next button but it does not navigate to the next page unless you fill the value. The problem I ha...

Disable Checkstyle

I have checkstyle plugin installed in my eclipse. How do I disable check style for a specific project in my workspace? If that is not feasible I would like to turn off checkstyle. Please advice. ...

disable/enable notification led

Is it possible to programmatically disable and enable the led indicator light on an Android device? I am not referring to just turning it on and off as in a notification. I did not see anything in the api that would do so. I am guessing this is hardware specific if it is possible at all. ...

how to disable draggable div when child element scrollbar is being used

I have a jQuery draggable container div with a side scroll bar that should not be draggable when I am scrolling up and down. .infotext is the inner div that has the text, contained within #infobody which is set to overflow:auto. I need a way to negate the draggable function on the parent div when the child scrollbar is selected. Here ...

wordpress disable wptexturize() everywhere (not just in the_content() or the excerpt())

Hey great people, how can I disable wbtexturize() in my sidebar? I have a Wordpress page with the title "Paper 10x10". In my sidebar navigation this page is displayed as "Paper 10×10" (note that the x is texturized by Wordpress and therefor the x became a multiplication sign ×). I have the plugin "raw html" plugin installed. It only di...

HTML / JAVASCRIPT : Disable HTML CONTENT in contentEditable=true

What I want? I want a div what works like a textarea, I don't want to have the ability to edit things in the div, and paste images and so on just plain text. Example www.facebook.com - The best example is facebook's news feed. Why I need this way? If you check out facebook's news feed, you well see that the area where you can...

WPF/MVVM: Weird behaviour of wpf buttons with Commands disabling

Hello, just some code...: Question is at bottom. XAML: <StackPanel Orientation="Horizontal"> <Button Content="Start" Command="{Binding FirstDateCommand}" /> <Button Content="Back" Command="{Binding PreviousDateCommand}" /> <DatePicker SelectedDate="{Binding SelectedDate}" DisplayDateStart="{Binding...

Flash disable a button/movie clip, not working?

I am using Greensock to tween and during a rollOver I need to disable some buttons. I am pretty sure the code is right but the buttons do NOT disable? code: import com.greensock.*; btn_skins.addEventListener(MouseEvent.CLICK, function() { TweenLite.to(mtvOrange, .25, {y:0}); } ); btn_teenwolf.addEventListener(MouseEv...

how can I disable everything inside a form using javascript/jquery?

I have a form that pop up inside a layer, and I need to make everything inside that form read only regarding what type of input it is. Anyway to do so? ...