change

Using WiX how do I disable/enable controls based on property change?

I'm having a bit of a brain melt at the moment where I have a WiX Combobox and when I change the selection I want to disable/enable other UI controls. <ComboBox Property="SQLAUTHTYPE"> <ListItem Value="WindowsAuth" Text="Windows Authentication" /> <ListItem Value="SqlAuth" Text="SQL Authentication" /> </ComboBox> That is w...

Changing HTML into DOM.

Is in Java (sic!) any function which could change HTML placed in string into DOM Tree? ...

Change the name of HREF link

Hi there, i have the following link <a href="example.com" id="example1"> Go to example....</a> Is it possible that when a body moves the cursor over "Go to example..." it changes to "Go to example One" , i am using php and jquery. Any help will be appreciated. ...

Why isn't this .change event firing in jQuery?

<html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>System Toolbox</title> <script src="../../Scripts/jquery-1.3.2.js" type="text/javascript" /> <script type="text/javascript"> $document.ready(function() { $("#SearchFor").change(function() { alert($(this).val());...

How to see all records changed since last commit in Oracle 10?

I have a rather large Oracle PL/SQL script I'm testing and I wanted to know if it was possible to see what records were updated/deleted/inserted since the last commit to the database? I need a faster way to check that all the database actions were done correctly. I have access to the command line as well as Oracle's custom tool SQL Devel...

JQuery 101 - Changing text value

I have a link to hide/display some text: <a href="javascript:void(0);" id="toggle_status_history">show/hide history<a/> The corresponding JavaScript looks like this: $(document).ready(function() { $('#toggle_status_history').click(function() { if ($('#status_history').is(":hidden")) { $('#status_history').slideDown("fast"...

In JavaScript is it possible on IE to register one event listener to capture all the change, focus, and blur events on the page?

In non-IE browsers: The change event bubbles, so you can catch it when it gets to document in the bubbling phase. The focus and blur events don't bubble, but you can catch them on the capture phase with one event listener on document. On IE: None of those 3 events bubble (including the change event, which is not spec compliant). Ther...

How to replicate the ipod configuration screen in a iphone app ?

Hi all ! I need to replicate the ipod configuration screen functionality, but have no idea how to do it. Let me explain : My App has several viewControllers, but only 5 are shown. When the user hits the MORE tab, it will show all the available Views . If he clicks on the EDIT button, the screen will show a bunch of tab-bar items, ( ic...

Looking to change / replace an image when a text field onfocus

Hi - I am looking for a solution to replace an image with another image when you focus on a text field. There are 4 text fields and 5 images (1 image is the default image) When you focus on each of the text fields, the correct image should replace the default image.. Thanks for any guide on this ...

jquery change() on input box in IE6 - can't remove focus

Hi, I have a checkout page that unobtrusively checks to see whether a customer has ordered from us before. After they fill in their e-mail address and focus to the next box, I look up the e-mail and present a 'welcome back' type thing with option to remember their details. I'm getting a problem in IE6 - whenever the focus is lost from ...

javascript change innerhtml

ok im new at javascript, but im trying to change the innerhtml of a div tag, heres my script and its not working: <head> <script type="text/javascript"> function var1() { document.getElementById('test').innerHTML = 'hi'; } window.onLoad = var1(); </script> </head> <body> <div id="test">change</div> </body> it should work but for some ...

Strategies for replacement of systemic objects

We are currently embarking on replacing the ADO.NET stack in our C# application with Linq. Because the application was not architected with a data abstraction layer, there are ADO calls throughout just about every layer of the application to such a degree that compartmentalizing any one object and trying to convert it to Linq means that...

Changing parent element using CSS

When I have <ul class="menu"> <li><a href="bla">link</a></li> </ul> how do I make the LI-tag change a property (e.g. list-style-image) when is hovered (a:hover)? ...

Website Changes not taking effect

So, I am updating some images on the left side of the website (dog-a-holics.com) I added in the category tree another category - specifically Dog ID Tags. I've edited the index file which is named index.new.html. However, it's not showing up. I noticed that the site main page keeps going to index.php. If I go to dog-a-holics.com/inde...

django apps for changing user email with verification ?

Hello, I already use django-registration : you can register with an email verification, you can reset password with an email confirmation but there is no way to change user's email with an email verification. Do you know a django application which gives the ability to change user's email address by sending to the new address a verifica...

ASP.NET: How to change color of certain texts in a gridview?

I have a gridview that displays data from a DB... Currently I can only change colors of all the texts in a cell, but what I need to do is to change the color of certain texts only. Is there a way to do this? Is this possible? Im just a newbie so please be patient with me.. This is my function for changing color of texts in cells: pro...

Detect what javascript function is changing a page element on load?

Hey! I have lots of jquery that is running on page load and it's causing one of my elements to disappear (making it style=display:none;). I'm guessing the jquery hide() function is being applied to this element by mistake, but I can't find out which statement is causing it. Is there any javascript,firebug,etc function or tool that will ...

how to change the date format from mm/dd/yyyy to dd-mm-yyyy in combobox?

i have a combobox which is displaying date from database...in my database the date enteries are in the format of mm/dd/yyyy but i want to display them in the format of dd-mm-yyyy...in that combobox..when the application run. ...

JQuery Div update on database update

Right now I am using setInterval to refresh a div every few seconds. The page it is refreshing is data being pulled from a database in asp. I would like to have it only refresh the div when a change occurs in the database because the query is pretty large, but I've searched and could not find function or example for this. I figure the...

Change iPhone UISlider bar image.

Hi everyone! My first question on stackoverflow! I'm using a UISlider in my app but I'd like to use a custom "look-and-feel" for it. I have changed the thumb to my own image but is there a way to change the bar also? I have a bar image I would like to use but can't see how to do this. I have found how to change the max and min image...