Web Forms :: Clicking Radio Button In Web Control Causes All Other Web Control Radio Buttons To Fire Postback?

Feb 8, 2010

I have a web application that shows a page containing between 6 and 20 AJAX UpdatePanels, contained with Custom Web (.ascx) Controls.

You can see an example of such a page here:

[URL]

The problem I'm getting is that when the user FIRST clicks any of the radio-buttons on any of the controls in the page, ALL the radio buttons that have an active selection ALSO fire an rb_CheckChanged event (see application log below). On subsequent radio-button
clicks, only that RB fires the event (as expected).

This behaviour is having a dramatic impact on performance. The page loads quickly, and a "normal" RB click provides an AJAX update correctly within 1 second. The problematic first RB click, however, takes up to SIX seconds to process, which is unacceptable from a user experience standpoint.

Developed in VS.NET 2008, ASP.NET 3.5. Also I converted the "Web Site" solution to a "Web Application" (pre-compiled) and got the same performance (still too slow). Release builds run only marginally faster than debug builds.

Why would a single RB selection change cause all RB's that have a "selection" set on them to also fire? (The "selection" is determined through database settings every time the control is populated, which is called from within the parent page control's Page_Load function. This selection is determined also at first page load, since all the controls get populated then, so why would the clicking of an RB cause them all to fire an event, and only once? That's what I don't get...)

Not sure if this is an AJAX issue, or general ASP.NET UI issue, so I'm posting in two forums on this one.

View 5 Replies


Similar Messages:

Looping Through Each Group Of Radio Buttons And Getting The Text Of The Selected Radio Button?

Mar 21, 2010

i have a table which looks something like the following

<table id="Table1" border="0">
<tr>
<td><b>1.</b> Question 1</td>[code]....

how do i go about looping through each group of radio buttons and getting the text of the selected radio button ?the code displayed above is created dynamically ... in my aspx file i have the following code

<asp:Table ID="Table1" runat="server">
</asp:Table>

View 3 Replies

Web Forms :: Image Control With Radio Buttons?

Jan 28, 2011

I need a control which can hold an image and two radio buttons, like the one we have when we upload a pictures on fb / orkut. 1. Image 2. Delete radio button. 3. Cover radio button. [Set this image as cover of album]

i have created a user control with these three things. On my aspx page on click of a button i need to add this user control. Means, user will select the image using FileUpload and when he clicks on the button this user control should be loaded. I am able to load the control. Check the following code.

[Code]....

1> All images come on new line i want them next to each other.

2> How to detect which radio button is clicked as i have more than one images, and all have radio buttons.

3> How to capture click of radio button from aspx page?

4> If there is some other way to achieve this let me know.

Searched on google but could not find a solution for this.

View 3 Replies

Web Forms :: Radio Buttons In User Control With Complicated Layout?

Mar 8, 2011

I have a user control I'm building that has a table layout with two sets of radio buttons, like:

how I could use a radiobuttonlist for each set of vertical buttons within this layout, unless I used a rowspan on each col, but that seems problematic from a layout perspective? I would rather use a RBL from a programming standpoint.

If I instead used a set of radiobuttons with a groupname for each, how do I get/set the selected button (for each set) from outside the UC?

View 2 Replies

C# - Radio Buttons Not Working When Binded With DataList Control?

Jul 23, 2010

When i tries to bind a radio button in a datalist it becomes multiselect as its name property becomes different even when i used GroupName to be same.

How can i make it act as radio button only.

[code]....

View 1 Replies

AJAX :: Use Databound Radio Buttons To Control CollapsiblePanelExtender?

Aug 17, 2010

I am using .Net 3.5 in VS 2010. I would like to use a couple of radio buttons, that are bound to data, to control the Expand/Collapse of a CollapsiblePanelExtender.

I have found several threads on the web that suggest using JavaScript to control the CollapsiblePanelExtender with a RadioButtonList, but I cannot $find the control in the JavaScript.

I have also found several threads that suggest using custom radio buttons, but I don't see how to do the databinding for these.

View 2 Replies

Controls :: Radio Buttons With Auto Postback

Oct 25, 2012

Working on VS2008 with using .vb

I have placed two radiobutton's on simple .aspx page. I didn't used any Update Panel or any javascript on that page also set both radiobutton's AutoPostback="True", But it's not responding as I want.

View 1 Replies

Web Forms :: Create Dynamic Radio Buttons In Webpage And Then Access Their Values In Postback?

Mar 24, 2011

I need to create dynamic radio buttons in my page, and then access their values in postback

I create the buttons using the following code:

[Code]....

In the post back I try to access the radio buttons using their created ID:

[Code]....

But it seems that the find method is never finding the Radio button control.

View 1 Replies

Web Forms :: ASP:TABLE And Get The Postback Data From A Programmatic Generated Radio Buttons In TableCell Object

Sep 13, 2010

I am having a bit of trouble trying to get teh postback data from a programmatic generated radio buttons in TableCell object. I have the following ASP user control:

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="wcntrlCallFlow.ascx.cs" Inherits="CallEvaluation.wcntrlCallFlow" %>
<style type="text/css">
.TableDev
{
width: 100%;
border-style: solid;
border-width: 1px;
border-color: Black;
}
.HeaderRowStyle
{
width: 100%;
border-style: solid;
border-width: 1px;
border-color: Black;
background-color:#33CCCC;
}
.DetailRowStyle
{
width: 100%;
border-style: solid;
border-width: 1px;
border-color: Black;
background-color:White;
}
</style>
<asp:Table ID="tblControl" runat="server"/>

I generate the TableRow and TableCell base off XML data file. When the submit occurs I can not access the data values from the radio buttons that are generated. I try to get the data in the following manner:

if(Request[objRadioName].Checked)
{
this.value = 5;
this.ReCalc();
}

I notice that in the Request object the table row name is passed back like: "wcntrlCallData1$wcntrlCallFlow1$CallFlow".

View 4 Replies

Web Forms :: Radio Button Event CheckedChanged Does Not Fire?

Feb 9, 2010

I have a simple form with 2 radio button grouped. I´m trying to hide/show a DropDown Listbox with the event CheckedChanged, but this event never fires...

<asp:RadioButton ID="AgruparPorCategoriaRadio" runat="server" GroupName="CategoriaFechaRadio" Text="Categoría"/>
<br />
<asp:RadioButton ID="AgruparPorFechaRadio" runat="server" GroupName="CategoriaFechaRadio" Text="Fecha" />

AND THE CODE BEHIND:

Protected Sub AgruparPorCategoriaRadio_CheckedChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles AgruparPorCategoriaRadio.CheckedChanged
AnticipacionList.SelectedIndex = 0
AnticipacionList.Visible = False
TemasList.Visible = True
ActividadesGrid.DataBind()
End Sub

View 3 Replies

Web Forms :: How To Select Only One Radio Button And Radio Button Validation

Mar 2, 2011

I've two radio buttons in my web site for selecting sex, one s for Male & another s for Female, Problem is during the Run time, I was able to select both the Radio Buttons, but as per my need i should select only one radio button. And i should perform validation Wn user not selected even one radio button i should show the error msg, like " select sex "

View 8 Replies

Getting Value Of Disable Radio Button Control In Asp.net C#

Apr 29, 2010

Not getting value of radio button which i disable using JQuery before page submit.

View 1 Replies

Radio Button List In Repeater Control

Oct 27, 2010

I have a repeater control in my page. I need to have a radio button in all the rows(Item template) on checking an radio button the remaining radio buttons must unchecked.

View 3 Replies

Forms Data Controls :: Access Radio Button List Selected Value From Repeater Control?

Dec 29, 2010

I have a user control (this has a label to display question and a radio button list to show options).

I am using this user control inside a repeater to display all the questions with their options.

In my repeater page I am not able to capture SelectedValue of radio button list.

protected void Repeater1_ItemDataBound(object sender, RepeaterItemEventArgs e)

View 4 Replies

How To Insert Values From One Table To Another Using Radio Button Control

Sep 16, 2010

I have created two tables in a SQL Server database and a RadioButtonList in an ASP.NET page. In one table I have stored values for each radio button as primary key. I want that on clicking that radio button, its primary key value in stored another table in a foreign key column..

View 1 Replies

To Display A Radio Button Based MVC User Control?

Mar 18, 2011

I have an MVC user control that displays radio buttons in my MVC app. The issue is that how do I get it to display unique q group name for each control. I need to somehow pass it a parameter to that the name is not set as the same as every other group of radio buttons that I have used the control for on the page.If this were not MVC I would know how to do this straight away.

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>

<td><input type="radio" name="need" value="4"/></td>
<td><input type="radio" name="need" value="3"/></td>
<td><input type="radio" name="need" value="2"/></td>[code]...

View 1 Replies

Web Forms :: Postback Using Javascript For Radio Button List?

Oct 5, 2010

My current structure:

1. An asp.net radio-button list with autopostback = true. The radio-button list has 2 items - Yes and No.

2. An asp panel that has 2 textbox.

Current behaviour:

When the user clicks on the radio-button list (i.e. Yes), the panel is made visible.

My clients wants the same functionality without the page refresh (i.e. the postback).

View 4 Replies

AJAX :: Radio Buttons, A Label And An Image Button Show Twice Inside Update Panel?

Nov 24, 2010

I have an update panel with a set of 2 radio buttons, a label and an image button inside of it. There another set of 3 radio buttons that trigger the update panel. I got everything working but now the image button, label and set of 2 radio buttons inside the update panel show up twice when the radio button triggers are selected?

View 2 Replies

C# - Radio Button Loses Value On Postback?

May 3, 2010

I have a set of radio buttons for "yes" and "no" values which have a name="choice". "yes" is checked by default. They're both runat="server". I read the choice on postback like below. It works perfectly fine as long as the validation doesn't fail. For example, if I select "no" and validation fails on postback, I still see "no" selected. But if I submit the form after correcting everything, the value read is "yes" on server side! Is this a bug in .net, and if so, how do i fix this?

foreach (string key in Request.Form.AllKeys)
{
if (key.EndsWith("choice"))
return Request.Form[key] == "yes";
}

View 1 Replies

Checking A Radio Button With JQuery When Radio Button Is Runat="server"?

Aug 10, 2010

Using jQuery I want to be able to click an element which will also checks it's related radio button. I had this working fine until we had to add runat="server" to the radio buttons.When I apply this it prevents my jQuery function from working how to get round it, heres a simplified version of the code:HTML

<input type="radio" runat="server" id="sector1Radio" name="SectorGroup" title="Sector1" />

jQuery

$('#SomethingElse').click(function() {
$('input[title=Sector1]').attr('checked','checked');
});

I've found out that when its converted to a .net control instead of checked="checked" (as it would be usually) it is just Checked, so I changed that but on inspecting the DOM in multiple browsers, none of my radio buttons are being checked(Are there any other ways I can use jQuery to check a radio button that has runat="server"?

View 9 Replies

How To Get Specified Space Between Radio Button And The Radio Button Text

Apr 4, 2011

I have the following code<asp:RadioButton runat="server" Text="Male"></asp:RadioButton>I want a gap between the radio button and the radio button text, I made the following changes in the text field(prefixed a space) Text=" Male". However, I don't feel this is the most efficient way.

View 1 Replies

Javascript - Disabled Radio Button Losing Value After Postback

Feb 14, 2011

I have two radio buttons that are disabled with javascript when the page loads. RadioButton1 is checked by default. When I click the button to do a postback, the RadioButton1 is no longer checked.

Here's my code sample. The code behind is empty.

<asp:RadioButton ID="RadioButton1" runat="server" GroupName="group" Checked="true"/>
<asp:RadioButton ID="RadioButton2" runat="server" GroupName="group" />
<asp:Button ID="Button1" runat="server" Text="Button"></asp:Button>
<script type="text/javascript">
window.onload = function () {
var RadioButton1 = document.getElementById('<%= RadioButton1.ClientID %>');
var RadioButton2 = document.getElementById('<%= RadioButton2.ClientID %>');
RadioButton1.disabled = true;
RadioButton2.disabled = true;
};
</script>

View 4 Replies

Web Forms :: Tab Index For List Items In Radio Button List Control

Oct 17, 2012

Is it possible to set tab index value for list items of ASP.Net RadioButtonList control.

View 1 Replies

Web Forms :: Use The Radio Button To Control The Visible And In Visible In Textfield?

Oct 12, 2010

[Code]....

[Code]....

[Code]....

View 15 Replies

Checked Radio Buttons - Display Three Image Buttons

Mar 4, 2010

In my form i have three radio buttons and nine image buttons, three image buttons per radio buttons

If the user check one radio button, the respective three image buttons only has to be displayed.

In a single time one radio button only can be checked the rest two would be unchecked

Here i have pasted the aspx file design source

[Code]....

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved