active questions tagged button - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T02:41:46Zhttp://stackoverflow.com/feeds/tag/buttonhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1878264/how-do-i-make-an-html-button-not-reload-the-page0How do I make an HTML button not reload the pageAnkur2009-12-10T02:20:35Z2009-12-10T02:28:06Z
<p>I have a button (< input type="submit"/>). When it is clicked the page reloads. Since I have some jQuery hide() functions that are called on page load, this causes these elements to be hidden again. How do I make the button do nothing, so I can still add some action that occurs when the button is clicked but not reload the page.</p>
http://stackoverflow.com/questions/1878273/prototype-ajax-updater-div-with-different-buttons0prototype ajax updater div with different buttonsguillem2009-12-10T02:22:44Z2009-12-10T02:22:44Z
<p>hello!
i'm learning it, but i cant find what's wrong in this!
i want the div2 to get data from the form in div1, called formulario.
i would like to know which item is selected and which button was clicked.</p>
<p>main html file:</p>
<pre><code><script src="utils/Scripts/prototype.js" type="text/javascript"></script>
<script type="text/javascript">
function sendf(formul, divi, php)
</code></pre>
<p>{
var params = Form.serialize($(formul));<br>
new Ajax.Updater(divi, php, {method: 'post', parameters: params, asynchronous:true});
}
</p>
<pre><code> </head>
<body>
<div id="div1">
contenido div1
<form id="formulario" method="POST">
<select size="3" id="lista" onchange="sendf('formulario', 'div2', 'prodiv1.php');">
<option>elemento 1</option>
<option>elemento 2</option>
<option>elemento 3</option>
</select>
<input type="button" id="b1" value="bot1" onclick="sendf('formulario', 'div2', 'prodiv1.php');" />
<input type="button" id="b2" value="bot2" onclick="sendf('formulario', 'div2', 'prodiv1.php');" />
</form>
<div id="div2" style="background: blue;">
contenido div2
</div>
</div>
</body>
</html>
</code></pre>
<p>the php file, prodiv1.php:
";
print_r($_POST); //doesnt work: returns null array
echo serialize($_POST); //same</p>
<pre><code> if (isset($_POST))
</code></pre>
<p>{
foreach ($_POST as $key=>$value)
{
echo $key."=>".$value."<br>";
}
}</p>
<pre><code> echo "select: ".$_POST["lista"];
if (isset($_POST['b1'])) {echo 'click: boton1';} else {echo 'click: boton2';}
?>
</code></pre>
<p>i've tried a lot of things, and seen that it could be done with event observers, httprequests and such, but what i need is quite easy, and probably there's an elegant way to solve it...
i thank in advance any help!
have a nice day.
guillem
PS: i'm sorry i'm not able to beautify this code!! </p>
http://stackoverflow.com/questions/1878128/prototype-ajax-updater-div-with-different-buttons0prototype ajax updater div with different buttonsguillem2009-12-10T01:32:41Z2009-12-10T01:54:53Z
<p>hello!
I'm learning it, but i cant find what's wrong in this!
I want the <code>div2</code> to get data from the form in <code>div1</code>, called <code>"formulario"</code>.
I would like to know which item is selected and which button was clicked.</p>
<p>HTML:</p>
<pre><code><script src="utils/Scripts/prototype.js" type="text/javascript"></script>
<script type="text/javascript">
function sendf(formul, divi, php)
{
var params = Form.serialize($(formul));
new Ajax.Updater(divi, php, {method: 'post', parameters: params, asynchronous:true});
}
</script>
</head>
<body>
<div id="div1">
contenido div1
<form id="formulario" method="POST">
<select size="3" id="lista" onchange="sendf('formulario', 'div2', 'prodiv1.php');">
<option>elemento 1</option>
<option>elemento 2</option>
<option>elemento 3</option>
</select>
<input type="button" id="b1" value="bot1" onclick="sendf('formulario', 'div2', 'prodiv1.php');" />
<input type="button" id="b2" value="bot2" onclick="sendf('formulario', 'div2', 'prodiv1.php');" />
</form>
<div id="div2" style="background: blue;">
contenido div2
</div>
</div>
</body>
</html>
</code></pre>
<p>prodiv1.php:</p>
<pre><code><?
echo 'exec: prodiv1.php<br>';
print_r($_POST); //doesnt work: returns null array
echo serialize($_POST); //same
if (isset($_POST))
{
foreach ($_POST as $key=>$value)
{
echo $key.'=>'.$value."<br>";
}
}
echo "select: ".$_POST['lista'];
if (isset($_POST['b1'])) {echo 'click: boton1';} else {echo 'click: boton2';}
?>
</code></pre>
<p>I've tried a lot of things, and seen that it could be done with event observers, http requests and such, but what i need is quite easy, and probably there's an elegant way to solve it.</p>
<p>Thank in advance for any help!
Have a nice day.
guillem</p>
http://stackoverflow.com/questions/1877934/prototype-ajax-updater-div-with-different-buttons0prototype ajax updater div with different buttonsguillem2009-12-10T00:40:11Z2009-12-10T01:09:02Z
<p>hello!
i'm learning it, but i cant find what's wrong in this!
i want the div2 to get data from the form in div1, called formulario.
i would like to know which item is selected and which button was clicked.</p>
<p>main html file:</p>
<pre><code><script src="utils/Scripts/prototype.js" type="text/javascript"></script>
<script type="text/javascript">
function sendf(formul, divi, php)
{
var params = Form.serialize($(formul));
new Ajax.Updater(divi, php, {method: 'post', parameters: params, asynchronous:true});
}
</script>
</head>
<body>
<div id="div1">
contenido div1
<form id="formulario" method="POST">
<select size="3" id="lista" onchange="sendf('formulario', 'div2', 'prodiv1.php');">
<option>elemento 1</option>
<option>elemento 2</option>
<option>elemento 3</option>
</select>
<input type="button" id="b1" value="bot1" onclick="sendf('formulario', 'div2', 'prodiv1.php');" />
<input type="button" id="b2" value="bot2" onclick="sendf('formulario', 'div2', 'prodiv1.php');" />
</form>
<div id="div2" style="background: blue;">
contenido div2
</div>
</div>
</body>
</html>
</code></pre>
<p>the php file, prodiv1.php:</p>
<pre><code><?
echo 'exec: prodiv1.php<br>';
print_r($_POST);
echo serialize($_POST);
if (isset($_POST))
{
foreach ($_POST as $key=>$value)
{
echo $key.'=>'.$value."<br>";
}
}
echo "select: ".$_POST['lista'];
if (isset($_POST['b1'])) {echo 'click: boton1';} else {echo 'click: boton2';}
?>
</code></pre>
<p>i've tried a lot of things, and seen that it could be done with event observers, httprequests and such, but what i need is quite easy, and probably there's an elegant way to solve it...
i thank in advance any help!
have a nice day.
guillem</p>
http://stackoverflow.com/questions/1866475/table-footer-view-buttons-iphone1Table footer view buttons - iPhoneMladen2009-12-08T11:51:35Z2009-12-09T18:09:40Z
<p>Hi Guys, </p>
<p>I have some signup form that had email and login text fields as table cells and signup button as button in footer view.
That all functioned superb, here is the code</p>
<pre><code>frame = CGRectMake(boundsX+85, 100, 150, 60);
UIButton *signInButton = [[UIButton alloc] initWithFrame:frame];
[signInButton setImage:[UIImage imageNamed:@"button_signin.png"] forState:UIControlStateNormal];
[signInButton addTarget:self action:@selector(LoginAction) forControlEvents:UIControlEventTouchUpInside];
self.navigationItem.hidesBackButton = TRUE;
self.tableView.tableFooterView.userInteractionEnabled = YES;
self.tableView.tableFooterView = signInButton;
self.view.backgroundColor = [UIColor blackColor];
</code></pre>
<p>My question is how to add another button next to this one. </p>
<p>By using [self.tableView.tableFooterView addSubview:...] buttons are not shown and if I use some other UIView, place buttons there and then say that the footerView is that UIView, I see the buttons, but am unable to press them.</p>
<p>I hope that this isn't too confusing and that you understand my problem.</p>
<p>Thx in advance,
Mladjo</p>
http://stackoverflow.com/questions/1866079/wpf-button-to-scroll-textbox1WPF Button to scroll TextboxPetoj2009-12-08T10:31:25Z2009-12-09T16:56:48Z
<p>I have a RichTextBox and a button.
Is there any easy way to make the textbox scroll down / up when i press the button? my guess is i have to use commands but im not 100% sure how commands work.</p>
http://stackoverflow.com/questions/1874867/can-an-image-map-be-linked-to-open-the-browse-file-controller1Can an image map be linked to open the browse file controller?Mike edwards2009-12-09T16:00:24Z2009-12-09T16:22:58Z
<p>I want the user to be able to click on an image on tab 1 of my app that will open up the file browser to enable a photo to be uploaded. is this possible??</p>
http://stackoverflow.com/questions/1874270/whats-the-best-way-to-design-a-custom-button-that-changes-font-color-size-when-s0What's the best way to design a custom button that changes font color/size when selected?Stephen Horvath2009-12-09T14:29:00Z2009-12-09T14:29:00Z
<p>I want to design a custom component that extends Button that will have two new styles: selectedColor and selectedFontSize. These will allow the button to have a different text label color and font size when the button is selected. (When I say 'selected' I mean <em>selected state</em>, not <em>being selected</em> (mouse down).</p>
<p>The approach I've taken is to extend Button, add two new styles, and then override the <code>selected</code> setter, and then use setStyle on the original color style to change font color to selectedColor (if button is selected) or color (if button is de-selected).</p>
<p>I am using selectedColor for simplicity sake in this example, but I want to be able to do this for selectedFontSize as well.</p>
<pre><code>[Style(name="selectedColor",type="uint", format="Color", inherit="no")]
[Style(name="selectedFontSize",type="Number",inherit="no")]
private var _deselectedColor:uint;
private var _selectedColor:uint;
override public function set selected(value:Boolean):void {
super.selected = value;
_selectedColor = getStyle("selectedColor") as uint;
if (!_deselectedColor)
_deselectedColor = getStyle("color") as uint;
if (selected)
setStyle("color",_selectedColor);
else
setStyle("color",_deselectedColor);
}
</code></pre>
<p>I'm storing the original color (de-selected color, that is) because it is overwritten when I <code>setStyle("color",_deselectedColor)</code>. I need to have some way to retrieve it when the button is de-selected.</p>
<p>There are many problems to this approach. Firstly, the first time the selected setter is called, during object construction, the styles are not yet populated. So I am getting a <code>color</code> of 0x000000 and <code>selectedColor</code> of 0x000000. Once I manually change the button state post-construction the styles are able to be read-in correctly, but by then it's too late, I've already stored the wrong value. Also, I need to be able to get style updates when set via mxml, actionscript setStyle method, or through css, both statically and dynamically. This approach obviously doesn't do that.</p>
<p>I've also tried overriding the <code>setStyle</code> and <code>styleChanged</code> methods. <code>setStyle</code> never gets called during construction when initializing the button via mxml, so that's a no-go. <code>styleChanged</code> gets called, but with nulls as the styleProp, not color like I need.</p>
<p>How do the pros do this?</p>
http://stackoverflow.com/questions/1872484/enabling-nsbutton-with-bindings-based-on-nstableview-selection0Enabling NSButton with bindings, based on NSTableView selectionPaul Schreiber2009-12-09T08:51:31Z2009-12-09T09:29:06Z
<p>I have a NSWindow containing an NSButton and an NSTableView.</p>
<p>I'd like the button to be enabled if and only if the table contains at least one item, and exactly one item is selected. (The table does not allow multiple selection.)</p>
<p>What can I bind the button's enabled binding to to make this happen?</p>
http://stackoverflow.com/questions/1870233/default-button-vb-net0Default Button - Vb.NETKevin2009-12-08T22:14:08Z2009-12-08T22:22:25Z
<p>Hey guys,</p>
<p>I have a button that I want to make default, but without the border thing around the button. Is this possible to do?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1841953/struts2-back-button-and-linking0Struts2 back button and linkingTrick2009-12-03T18:35:47Z2009-12-08T15:30:40Z
<p>Hello!</p>
<p>I am using Struts 2.1.6 with Dojo plugin, whole app has ajax links (sx:a). </p>
<p>Did anybody succeed to implement back button functionality and linking to certain content? </p>
<p>Does anybody have any experience how to implement? I am planning to implement (if there is no good solution already) something like so:</p>
<ul>
<li>changing address bar link (adding parameters) with js which I can then read and get proper content and then publish it with notifyTopics.</li>
</ul>
<p>Or should I just change whole app to use jQuery plugin? Do jQuery has good solutions for back button and linking on ajax pages?</p>
<p><strong>EDIT:</strong>
I found a solution and I am developing it, I will post the answer this week.</p>
http://stackoverflow.com/questions/1865738/how-to-display-another-form-on-select-of-button0How to display another form on select of buttonunknown (google)2009-12-08T09:19:19Z2009-12-08T10:29:46Z
<p>Hi everyone
I created jsp which has 2 forms. In UI there are 2 buttons. On select of each button respective form should be displayed. But while trying to do this its not allowing me to display other form on button click. Can I have any sample code such that it will resolve my problem and i can proceed with my work. I will be thankful for your valuable replies</p>
http://stackoverflow.com/questions/1860911/uialertview-button-columns0UIAlertview Button columns luckee2009-12-07T15:59:39Z2009-12-08T10:05:56Z
<p>In iphone application can we set number of columns in UIAlertView as if I have six buttons in UIAlertView then how can I show it in 2 columns and 3 rows. If any one done it kindly share it how it will done .. </p>
<p>Any sample code will be extra help </p>
http://stackoverflow.com/questions/1853042/creating-custom-button-in-gwt1creating custom button in gwt special0ne2009-12-05T18:41:30Z2009-12-08T01:13:41Z
<p>hi,
i am trying to do something pretty common with GWT.
creating a button behavior with an image and a text. by positioning the text on top of the image. </p>
<p>i have used the HTML widget but how can i make the text not selectable?</p>
http://stackoverflow.com/questions/1860766/resizable-button-with-background-in-flash-cs40Resizable Button with background in flash CS4Bhavesh.Bagadiya2009-12-07T15:39:59Z2009-12-07T16:34:31Z
<p>Hi,</p>
<p>I want to create a button which resize dynamically with content. to achieve this, I created a MovieClip in library and added four layers into it namely - text, bg, shadow and border.</p>
<p>Problem I'm having is, if I make textfield autosize, only textfield resizes and others stuff remain as it is. if I calculate width required using xxxLineMetrics function and apply it to Button, background resizes properly but textfield also stretches with them and looks ugly.</p>
<p>I want backgrounds(sibling of textfield) resize properly with textfield so button looks nice with resized background and normal autosized textfield.</p>
<p>I hope u guys got what I want...any help appreciated...</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/1846494/make-child-window-transparent-to-user-input0Make child window transparent to user inputXiphias32009-12-04T11:51:50Z2009-12-06T01:53:40Z
<p>Is there a way to make input "pass through" a child window and reach its parent? My problem is this: I'm making custom control with a label that can be formatted. So, rather than trying to re-invent the wheel, I added a <code>RichTextEdit</code> control and applied the <code>WS_EX_TRANSPARENT</code> extended window style. It looks like what I want, but there are obvious focus and input issues. Is there an effective way to pass on the child window's messages to the parent or apply a set of styles thus making the child window appear to just be text drawn on the button?</p>
http://stackoverflow.com/questions/1852540/aspbutton-dont-works-in-a-jquery-dialog0ASP:Button don't works in a jquery dialogLuca Romagnoli2009-12-05T15:55:33Z2009-12-05T22:43:37Z
<p>Hi have a jquery dialog:</p>
<p>the js source is:</p>
<pre><code> $(document).ready(function() {
$("#DialogConfirmationDiv").dialog({
bgiframe: true,
autoOpen:false,
height: 140,
title: "Confermi l' invio?",
modal: true
});
}
</code></pre>
<p>the html source is:</p>
<pre><code><div id="DialogConfirmationDiv" title="Conferma nota spese">
<asp:Button ID="ConfermaSi" runat="server" Text="Si" OnClick="ButtonSalva_Click" OnClientClick="$('#DialogConfirmationDiv').dialog('close');return true;" />
<asp:Button ID="ConfermaNo" runat="server" Text="No" OnClientClick="$('#DialogConfirmationDiv').dialog('close');return false" />
</div>
</code></pre>
<p>the button ConfermaNo works.</p>
<p>On the click event ConfermaSi close itself but don't call the ButtonSalva_Click method.
I tried with debugger and breakpoints on this method bur it's not called.</p>
<p>How can i do ?
thanks</p>
http://stackoverflow.com/questions/1109022/how-to-close-hide-the-android-soft-keyboard4How to close/hide the Android Soft Keyboard?PHP Jedi2009-07-10T11:27:17Z2009-12-04T10:01:27Z
<p>Im having an EditText and a Button in my layout. After writing inside the edit field and click on the Button, i want to hide the virtual keyboard. I guess there should be a simple, one or two liner to make this happen, but cant find any example of it.</p>
<p>Anyone with a suggestion?</p>
http://stackoverflow.com/questions/1842594/img-src-jquery0img src & jQuery?thedp2009-12-03T20:15:28Z2009-12-04T00:31:20Z
<p>I have an image, and using jQuery I've turned it into a button.
The so called button has two states: regular and pushed.</p>
<p>Using jQuery I detect a "mousedown" and "mouseup" and replace the "src" attribute, like so:</p>
<pre><code>$("#btn").click(function() {
;//DO SOMETHING HERE WHEN PRESSED
});
$("#btn").mousedown(function() {
$(this).attr({ src: regular.png });
});
$("#btn").mouseup(function() {
$(this).attr({ src : pushed.png });
});
</code></pre>
<p>While testing this offline it works great! But today I noticed that when the images are stored on the server it loads the images over and over and over again with every attribute change.</p>
<p>How can avoid this load issue and make all the images load only once from the server?</p>
<p>Also, if there is a better to accomplish what I'm trying to do here, please let me know.</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1834090/silverlight-button-content-click0Silverlight Button Content ClickMatt2009-12-02T16:29:31Z2009-12-02T23:54:40Z
<p>Hi all, I have a simple button with some content. With my content though, the button click event doesn't fire if you click on it. You need to click on the small border (which is the button behind the content) to fire the event. What's the solution?</p>
<p>Thanks in advance.</p>
<pre><code><Button x:Name="btnAddFriend" Width="64" FontFamily="Fonts/Fonts.zip#Helvetica Neue LT Std" FontSize="10" Click="btnAddFriend_Click" Grid.Row="0" Grid.Column="3" HorizontalAlignment="Right">
<Button.Content>
<StackPanel Height="21" Width="62" Background="#FFC10708">
<TextBlock Text="Add Friend" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Bottom" Margin="0,3,0,0" Width="58" />
</StackPanel>
</Button.Content>
</Button>
</code></pre>
<p>-- Update<br>
Seems that the above code works fine in a brand spanking new silverlight project. So I'll have to provide more detail! The button is within a Grid, and that grid is within a tabcontrol. Now I've tried creating a new silverlight project with a copy and paste of the xaml and everything seems to work. But the problem is still happening on my actual project. I've cleared the browser caches umpteen times by now. I'm almost considering a new approach to my button.</p>
http://stackoverflow.com/questions/1773125/hi-guys-how-can-i-add-a-button-to-my-form0Hi guys. how can i add a button to my formafi2009-11-20T20:42:10Z2009-12-02T17:15:45Z
<p>I'm confused.Can't find any button control to add to a form in my mobile application.its a standard mobile application with mobile emulator 6.0. </p>
<p>how can i add a button guys???</p>
http://stackoverflow.com/questions/148729/how-to-set-change-remove-focus-style-on-a-button-in-c1How to set/change/remove focus style on a Button in C#?pbean2008-09-29T13:51:43Z2009-12-02T11:55:57Z
<p>I have a couple of buttons of which I modified how they look. I have set them as flat buttons with a background and a custom border so they look all pretty and nothing like normal buttons anymore (actually, they look like Office 2003 buttons now ;-). The buttons have a border of one pixel.</p>
<p>However when the button gets selected (gets the focus through either a click or a keyboard action like pressing the tab key) the button suddenly gets and extra border around it of the same colour, so making it a two pixel border. Moreover when I disable the one pixel border, the button does not get a one pixel border on focus.</p>
<p>On the net this question is asked a lot like 'How can I disable focus on a Button', but that's not what I want: the focus should still <em>exist</em>, just not <em>display</em> in the way it does now.</p>
<p>Any suggestions? :-)</p>
http://stackoverflow.com/questions/1829175/change-button-action-to-url-adress-or-bash-script0change button action to url adress or bash scriptmothorool2009-12-01T21:49:34Z2009-12-02T09:50:39Z
<p>There is a button in a site like this:</p>
<pre><code><form method="POST" action = "/invite/1233">
<input type="hidden" name="t" value="4b16d">
<button type="submit">submit</button>
</form>
</code></pre>
<p>How can I "emulate" pressing this button for example in bash? Is it possible to make an adress that I can click instead of this button? Why <code>http://site-domain-here/invite/1233?t=4b16d</code> doesnt work?</p>
http://stackoverflow.com/questions/1828010/apply-css-to-jquery-dialog-buttons2Apply CSS to jQuery Dialog ButtonsMega Matt2009-12-01T18:33:56Z2009-12-01T19:13:04Z
<p>Hello,</p>
<p>So I currently have a jQuery dialog with two buttons: Save and Close. I create the dialog using the code below:</p>
<pre><code>$dialogDiv.dialog({
autoOpen: false,
modal: true,
width: 600,
resizable: false,
buttons: {
Cancel: function() {
// Cancel code here
},
'Save': function() {
// Save code here
}
},
close: function() {
// Close code here (incidentally, same as Cancel code)
}
});
</code></pre>
<p>However, both buttons are the same color when this code is used. I'd like my Cancel button to be a different color than my Save. Is there a way to do this using some built in jQuery options? I didn't get much help from the documentation.</p>
<p>Note that the Cancel button I'm creating is a pre-defined type, but 'Save' I'm defining myself. Not sure if that will have any bearing on the issue.</p>
<p>Any help would be appreciated. Thanks.</p>
<p><strong>UPDATE:</strong> Consensus was that there were two roads to travel here:</p>
<ol>
<li>Inspect the HTML using a Firefox
plugin like <a href="http://www.getfirebug.com" rel="nofollow">firebug</a>, and note
the CSS classes that jQuery is
applying to the buttons, and take a
stab at overriding them. <em>Note: in
my HTML, both buttons were used the
exact same CSS classes and no unique
IDs, so this option was out.</em></li>
<li>Use a jQuery selector on dialog open
to catch the button that I wanted,
and add a CSS class to it then.</li>
</ol>
<p>I went with the second option, and used the jQuery find() method as I think this is more appropriate than using :first or :first-child b/c the button that I wanted to change wasn't necessarily the first button listed in the markup. Using find, I can just specify the name of the button, and add CSS that way. The code I ended up with is below:</p>
<pre><code>$dialogDiv.dialog({
autoOpen: false,
modal: true,
width: 600,
resizable: false,
buttons: {
Cancel: function() {
// Cancel code here
},
'Save': function() {
// Save code here
}
},
open: function() {
$('.ui-dialog-buttonpane').find('button:contains("Cancel")').addClass('cancelButtonClass');
}
close: function() {
// Close code here (incidentally, same as Cancel code)
}
});
</code></pre>
http://stackoverflow.com/questions/1820954/how-do-you-set-up-a-menuing-system-clickable-buttons-in-c-directx1How do you set up a menuing system (clickable buttons) in C++/directx?Mark2009-11-30T16:46:12Z2009-11-30T18:25:29Z
<p>I'm lead to believe that function pointers are going to be needed to assign functions to the images that will be used as buttons somehow, but I can't find any decent resources on this. </p>
<p>How can you set up a button menu in C++? For example, having buttons for save, load, exit, new. </p>
<p><strong>edit:</strong> I am not worried about portability for this example. I'd rather do it myself than use a predefined framework. It will only be run on Windows machines.</p>
http://stackoverflow.com/questions/1820831/html-radio-button-inside-asp-net-repeater-c1HTML Radio button inside ASP.NET repeater C#Murtaza RC2009-11-30T16:25:36Z2009-11-30T16:34:00Z
<p>I am trying to simply bind a HTML Input radio button inside a repeater :</p>
<pre><code><asp:Repeater ID="Outlets" runat="server" >
<ItemTemplate>
<input type="radio" name="Proposal" value="Test1" id="Radio1" checked="
<%#`GetSelectedValue(DataBinder.Eval(Container.DataItem,"IsDefaultSelection"))%>" />`
<label for="Test1">
<%#DataBinder.Eval(Container.DataItem, "Label")%>
</label>
</ItemTemplate>
</asp:Repeater>
</code></pre>
<p>The GetSelectedValue method simply returns a string "checked" for the radio button to be selected, lets say the repeater had 3 items to loop and when the markup renders and If I inspect the element I see the correct value for the first radio button i.e. checked="checked" but on the UI the 3rd radio button gets selected even though its checked value="false", can someone guide me as to what i am doing wrong?</p>
http://stackoverflow.com/questions/1819878/changing-button-color-programatically1Changing button color programaticallyZsolt2009-11-30T13:39:29Z2009-11-30T13:53:05Z
<p>Dear All,<br />
Is there a way to change the color of a button, or at least the color of the button label programmatically?
I can change the label itself with </p>
<pre><code>document.getElementById("button").object.textElement.innerText = "newlabel";
</code></pre>
<p>But how to change the color?</p>
<p>Thanks,<br />
Zsolt</p>
http://stackoverflow.com/questions/1814492/jquery-to-target-same-id-as-class-name-of-clicked-element1Jquery to target same id as class name of clicked element?cannyboy2009-11-29T02:51:50Z2009-11-30T03:10:14Z
<p>I'm trying to use jquery to enable a form button only after a radio button has been selected.
It's a t-shirt shop where the user is required to choose a size before the 'add to cart' button becomes enabled.
The html looks a bit like this:</p>
<pre><code><input class="radioclick product21" type="radio" name="variation[variation_select_21_1]" value="1">Big
<input class="radioclick product21" type="radio" name="variation[variation_select_21_2]" value="2">Small
<input type="submit" id="product21" class="buy_button" name="Buy" disabled="disabled" value=" ">
</code></pre>
<p>So, the submit button is disabled. To enable it when the user clicks a radio button, I use this jquery:</p>
<pre><code>$(function()
{
$('.radioclick').click(function()
{
$('.buy_button').removeAttr('disabled');
$('.buy_button').attr('value', 'add to cart');
});
});
</code></pre>
<p>However, that enables ALL the submit buttons on the page (there's lots of t-shirts on the page). The second class name of the radio button is the same as the id of the submit button, so is there a way to use this classname to target the enabling of the specific submit button?</p>
<p>(hope that all makes sense!)</p>
http://stackoverflow.com/questions/1817321/wpf-how-to-make-button-splitbutton-enabled-when-its-bound-command-cannot-exec0WPF: How to make button (splitbutton) enabled when it's bound command cannot execute?Tomáลก Kafka2009-11-30T00:38:31Z2009-11-30T00:58:35Z
<p>Hi, I am building a custom splitbutton that consists of two overlapping buttons, and popup - like this (image shows some generic splitbutton):</p>
<p><img src="http://windowsclient.net/wf/blogs/jfoscoding/splitbutton.PNG" alt="SplitButton"></p>
<p>My SplitButton opens popup whan a right side with arrow is clicked, and executes SplitButton.Command when a main button is clicked.</p>
<p>In my case however sometimes the default action cannot execute, and in those cases, when a main button is clicked, I'd like to open the popup instead.</p>
<p>I have accomplished it, but the problem is this: </p>
<ul>
<li>the SplitButton is subclassed from ToggleButton</li>
<li>in a ControlTemplate, I have a ToggleButton (the bottom one), and Button (shorter, overlaid on the top)</li>
<li><code>Button.Command="{TemplateBinding Command}"</code> (so I can do <code><SplitButton Command="{Binding MyDefaultAction}">...</code>)</li>
<li><strong>problem: when a command cannot execute, the whole SplitButton gets disabled.</strong></li>
</ul>
<p>I'd like to keep having the same command, but to override the button's behavior so that it doesn't become disabled when Command.CanExecute() returns false. How can I do this?</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1417471/how-to-put-a-button-in-a-header-of-asp-net-gridview0How to put a button in a header of ASP.NET gridview?Roman2009-09-13T11:03:58Z2009-11-29T00:00:01Z
<p>Hi,
All I want to do is to put an asp:button in the header of a gridview.
Let's say you have a grid view with 3 columns - id, name, family. So, instead of a header [id, name, family] i want it to be [id, name, asp:button] - so the button will have it's action of course.</p>
<p>Thanks,
Roman.</p>