disabled

Text in disabled and css styled button shows movement in IE

Hi. It's pretty much what the title says. I have disabled and css styled buttons. In Firefox, disabled buttons do not move at all when pressed (which is what is expected), in IE, the text in the buttons still moves a few pixels. Anyone know why this happens and more importantly, how to make disabled styled buttons actually disabled in ...

Bad behavior with Aero off in Vista

I have a directx9 application, which needs to run on a machine with Aero disabled. The app runs in windowed mode. When the window is first created, it looks just fine within a single screen. When I move the window in such a way that it spans two screens attached to the same graphics adapter (and GPU) the region on one screen seems to mir...

tooltip on disabled control

happy holidays! i have a tablelayoutpanel (10x10). within each cell i have a picturebox which are disabled (enabled = false). i am trapping mouse move over the table to catch mouse movement. here is the code: private void tableLayoutPanelTest_MouseMove(object sender, MouseEventArgs e) { if (!placeShip) { ...

How to show static image when a site hosting Flash is blocked

I'm trying to load a youtube video in a webpage. Not overly difficult, and works fine. <object width="600" height="362"> <param name="movie" value="http://www.youtube.com/v/etc"&gt;&lt;/param&gt; <param name="allowFullScreen" value="true"></param> <embed src="http://www.youtube.com/v/etc" type="application/x-shockwave-flash" width="6...

Client side javaScript to toggle dropdownlists effects reversed on the 2nd postback.

I have some 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 enable/disable property on the associated dropdownlist. I save the disabled property value of a hidden field to track the disabled state of a button...

ComboBox binding

I've got a simple question, I've got a combobox whose itemsSource is bound to a relatively expensive service call. If I have the combobox in question disabled will the binding still fire? If so what I can I do to ensure that the expensive call is only made when it really needs to be? ...

ajax/jquery disables links after submit

i am working on this form. i am using lightbox and dhtml fade effects. the content in my lightbox is a form. i am using jquery to validate the form. once the form is submitted, i redirect a user back to a thank you page. what i am noticing is that, once all the above events has taken place, i cannot click anywhere on my screen, all the l...

Render tooltip on disabled HTML Button.

I have a HTML button. I have tried to render a tooltip on it based on the "title" attribute of the button and it doesn't render. Mainly because it's disabled. I then tried wrapping the button in a span and setting the "title" attribute of the span. Hovering over the button that is wrapped in the span still has no effect. The tooltip ...

Eclipse RCP: Disabled windows Icons in the Toolbar

Hello, I tried to use my own disabled 24*24 icons in a toolbar of an eclipse app. The scaling of the enabled icon is fine, only the disabled icon is scaled to 16*16 standard size. I tried different Images with different sizes but as soon as its larger than 16*16 it is scaled. This problem only occurs, if on a windows machine on an appl...

Problem with ScatterView - Components behind disabled

Hi everybody. I'm working currently on a simple project which consist of a ScatterView with a lot of items and then a Navigation (Implemented as many buttons). The problem is that i will like to have the ScatterView on top of everything, so that users can interact on the whole window as they want. I tried different things: If I put ...

ASP.NET - server side control & javascript interaction

Hi folks, on a page with textbox control, lets say this textbox is disabled on server side page load. What would happen if a javascript tries to set visibility of the textbox to false ? Edit: Can the textbox be hidden by javascript even though it's disabled ? TIA ...

Disabled textbox editable in IE8

I am developing my app in asp.net web forms. The textbox is set like this <asp:TextBox ID="txt1" runat="server" Enabled="false" ></asp:TextBox> and this is the corresponding HTML markup <input name="txt1" type="text" value="1.0" id="txt1" disabled="disabled" /> It is not editable upto this point. I enable Caret browsing in IE8 (p...

jQuery validation plug-in is failing element validations even when elements are disabled

A sample of the HTML snippet is here: <select name="paytitle" id="paytitle"> <option value="Budget Keeper" selected>Budget Keeper</option> <option value="Bookkeeper">Bookkeeper</option> <option value="Treasurer">Treasurer</option> <option value="Accounts Payable">Accounts Payable</option> <option value="Other">Other<...

WPF: Is it standard that when a menuitem is disabled the icon is not greyed out?

I have menuitems with icons and when it is disabled the icon remains the same. Is it up to me to supply a disabled icon and, if so, does this also apply to menuitems bound to a command? ...

How to grey out spinner in Android?

I use two Spinner in my App. One of them is initially disabled because I need the user to select something in the first spinner to load the content of the second one. I would like to change the design of the second spinner to show the user that the spinner is not active, eg. grey the spinner out. How can I achieve this? If this is not...

SSRS date default with formula disables parameter

When I set a default value formula for a date parameter in SSRS, such as: =CDate(”01/” & Month(Now) & “/” & Year(Now)) or even: =Now The date parameter control becomes disabled with nothing in it. Anyone know what simple thing (I am sure) I am doing wrong? ...

Disabling Button with custom Content in Silverlight?

Hi there, What is the easiest way to create a Silverlight Button with custom Content which knows how to 'look' disabled? I.e. if you set IsEnabled="False" it will look greyed out. The custom Content will be dead simple, text and an image. I have done this before in a WPF application quite easily by setting the Content to a StackPanel ...

SelectedValue of DropDownList is not the one I selected when Enabled=false

Hiya, I have a few DropDownLists on a webform each pointing to a SqlDataSource. Some of these datasources use one of these DropDownLists for a select parameter, filtering the list to specific categories. For certain users two of these DropDownLists are to be automatically set and disabled. When I submit the form with the drop down...

It's possible to don't pass in GET some fields of a form?

I have a form with some input texts passed in GET, and i don't want to have in GET all the fields; i want to avoid empty fields. So, a concrete example for: <form method="GET" action="an_url"> <input type="text" name="field1"/> <input type="text" name="field2"/> <input type="text" name="field3"/> <input type="submit" va...

Trigger jQueryUI datePicker on button click, send result to disabled input field

Hi I've been searching for a way to do this, but could not find anything I want to have a: a disabled input text field, called #XX. This input will store the selected value from datepicker (as this input is disabled I won't be able to use this to trigger the datePicker) A button, besides #XX. When user clicks this button, datePick...