Questions tagged [disabled-control]

322 questions
0
votes
2 answers

How to disable radiogroup?

I am doing an application in asp.net mvc. I have a radiobuttongroup to be set as Yes always and I want to disable it. This is my radiobutton group.. @Html.RadioButton("rdoGp_PriTenant", "rdoGp_PriTenantYes",…
neetz
  • 140
  • 4
  • 11
0
votes
1 answer

JS - jQuery - Tw Bootstrap - block user to scroll body but show scroll bars

Ok, using overflow:hidden; the page don't scroll and don't shows scrollbars. What i would like to achieve is to disable body from scrolling but showing scrollbars, like to make scrollbars static/disabled without having to hide them. I need to…
itsme
  • 48,972
  • 96
  • 224
  • 345
0
votes
1 answer

Dynamic disable validator when click checkbox

I got one number validator and one checkbox in my jsf. When a checkbox is selected then the number validator will check validation. When checkbox is unselected, the validation will skip it. Please see my code
user998405
  • 1,329
  • 5
  • 41
  • 84
0
votes
2 answers

How can I disable a DIV "acting like a submit button" after it is clicked once?

I have a div that is working like a submit button so when a user clicks it it submit a form and it sends a ajax request to the server. The problem that I am having is that if the user click the button twise, the it create duplicate even it is an…
Mike
  • 2,735
  • 11
  • 44
  • 68
0
votes
7 answers

Enable/disable div according to guest/user entrance using php and jquery

I want to enable or disable a div according to the session if it starts with an user or a guest. I want to do something like this: First, i will evaluate if it is user or not by doing this:
ePascoal
  • 2,362
  • 6
  • 26
  • 44
0
votes
1 answer

How to locally disable sliding in a panoramic app WP8

I am making an app with panoramic view where the user can select a color hue, saturation and value from a color wheel and SV graph like this: https://i.stack.imgur.com/wFwcL.jpg https://i.stack.imgur.com/FJgbm.jpg The user can either tap or drag a…
0
votes
1 answer

Disable single button of buttongroup - extjs

I am having button group in which I am having 4 buttons...I want to disable particular button on some button click.. how can i do this? I have tried : buttonItemID.disabled = true. (radarbutton.disabled = true) but cant get result. please give…
Curious_k.shree
  • 990
  • 2
  • 18
  • 37
0
votes
1 answer

Flex Disabled Checkbox toolTip

I need to be able to show a toolTip on disabled checkboxes. A solution I've seen here on stackoverflow and other places is to just wrap the checkbox in a Group and give the Group the toollTip. This works, but I'm trying to do this generically. I…
user1513171
  • 1,912
  • 6
  • 32
  • 54
0
votes
1 answer

Komodo Edit 7 Run button is disabled

I have installed Komodo Edit 7. I am trying to run a simple Perl script. In the Run Command popup box I have chosen Run as "%F", but the Run button remains disabled. Even after choosing different options, it always remains disabled. It works fine on…
user466663
  • 815
  • 4
  • 18
  • 40
0
votes
1 answer

How to disable an Ajax Combobox on the text change of another Ajax Combobox?

I am acheiving this via postback but that is adding a delay at my server so I want to handle this on the client side. Can anyone guide me how to disable one combobox on the clientside event of another combobox. I have done so far: function Enable()…
Incredible
  • 3,495
  • 8
  • 49
  • 77
0
votes
2 answers

disable button until value is selected ---select---doesnt appear

SO far everything working ok, button is disabled until value is selected from the drop down list, However I want ---select--- to be the first option on the drop down list, but this is not happening...any ideas as to why?
John
  • 3,965
  • 21
  • 77
  • 163
0
votes
2 answers

Disable Right Click in website

I have this code below to disable right click. When you hit the right click it says Function is disabled. which works but i want it to show nothing at all basicaly when you hit the right click nothing happens... what kind of magic can we use to do…
Coderwannabe
  • 407
  • 1
  • 5
  • 11
0
votes
2 answers

Disabling the button in ASP.Net when there is a loop

I have a problem in disabling the button in ASP.Net I cannot disable the button when there is a loop example of my code: private void button1(object sender, EventArgs e) { button1.Enabled = false; for(int i = 0; i < 1000000; i++) { …
portgas d ace
  • 309
  • 3
  • 9
  • 21
0
votes
1 answer

how to hide html content of the tab with the tab in extjs?

I created this simple example with two tabs, the first tab1 i want to make it disappear myTab.child('# tab1').Tab.hide(), but your html content does not disappear with the tab1. And when I enable the html content of tab2 tab1 is on the html of tab2.…
claudioprv
  • 199
  • 1
  • 1
  • 7
0
votes
1 answer

Lazarus - How to control the color of a textbox that is disabled (i.e., Enabled := false)

When data is to be viewed only, I'm disabling the text boxes on the form. But during this time, the text is not very readable as it's very light. Is there a way to change the color of these textboxes instead of using the default colors for DISABLED…
itsols
  • 5,406
  • 7
  • 51
  • 95