MVC :: Checkbox To Dynamically Disable Text Box?

Jun 13, 2010

I'm trying to have a checkbox disable and enable a textbox, within a strongly typed viewmodel.

[Code]....

I couldn't find any way to make a checking the nine2five checkbox to disable the startTime and endTime textboxes (and set values to 9 and 5 appropriately).

View 3 Replies


Similar Messages:

Javascript Disable Checkbox Not Working After Codebehind Disable?

Aug 25, 2010

I have a simple javascipt which enables/disables some checkboxes when another checkbox ticked/unticked. This works fine, however, in some instances when by page is loaded my code behind disables the same check boxes. When this happenes my original check box nolonger seems to have any influence in enableing or disabling - there is no error and all the elements seem to be found by the javascript - it just doesn't enable/disable the checkboxes.

View 5 Replies

Web Forms :: Use Dynamically Created Controls Such As A Checkbox List And Fill The Values Dynamically?

Sep 28, 2010

I'm creating an quiz application which queries the database and extracts the questions and choices. I use dynamically created controls such as a checkbox list and fill the values dynamically. How do I do this? Right now I have these functions:

array_random_init(); this creates a 10 element integer array from 1-20 - extract_question(i): this extracts a question indexed at i in DB, I created the controls and set the appropriate text in this function. - validate_question(i); this is called by button_click and validates the question i according to DB.

I understand I have to recreate the controls in Page_init on postback, but what should it look like? Do I need to add "if IsPostBack" in page_init, or do I create the controls in page_init() and reset their properties in page_load when I use extract_question(i)? Also, I cannot seem to clear the selected boxes on postback, I added page directive "enableviewstate=false" but it doesn't work.

View 2 Replies

C# - Unable To Disable CheckBox In GridView

Sep 23, 2010

I am not able to Disable CheckBox in GridView , whats the problem with my code ?

foreach (GridViewRow row in GridView1.Rows)
{
CheckBox ch = (CheckBox)row.FindControl("CheckBox1");
if (ch.Checked)
{
String ExamineeId = (String)GridView1.DataKeys[row.RowIndex].Value;..........

View 1 Replies

Web Forms :: How To Checkbox Postback In Javascript Disable

Feb 2, 2011

I need code to work in javascript disable for postback of checkbox. As i know with lots of google search that it is not possible..

View 6 Replies

Disable The Validation Of DropDownlist If Checkbox Is Checked?

May 27, 2010

I have DropDownlist with Reqired field Validator control for validating initial value of DDL

Now if Checkbox is Checked then i have to disable the Validation of DropDown Selection else must validate the DropDownlist initial value.

View 4 Replies

Web Forms :: Disable A Dropdownlist When A Checkbox Is Checked?

Jul 6, 2010

Is there a way to have a dropdownlist disabled if the user checks a checkbox? Is there a tutorial that you can point me to?

View 12 Replies

Enable/Disable Gridview Checkbox Based On Conditions?

Mar 2, 2011

I had a checkbox in gridview to select rows for batch update, i want to disable and enable the checkbox base on some conditions.

For example, I had a column called "Status", if the status="Approved", the checkbox of this row will be disable, otherwise the checkbox is enabled to select.

Code:

<Columns>
<asp:TemplateField>
<HeaderTemplate>
<asp:CheckBox ID="cbSelectAll" runat="server" Text="" OnClick="selectAll(this)" />
</HeaderTemplate>
<ItemTemplate>
<asp:CheckBox ID="cb_Select" runat="server" />
</ItemTemplate>
</asp:TemplateField>
<asp:BoundField DataField="status" HeaderText="Status" ReadOnly="True" meta:resourcekey="GridView1_status">
<ItemStyle HorizontalAlign="Center" Width="80px"/>
</asp:BoundField>

View 1 Replies

VS 2008 Enable And Disable Checkboxes On Checkbox In Repeater?

Dec 2, 2010

see the .aspx page VS 2008 enable and disable checkboxes on checkbox in repeater?

Code:

[code]....

View 6 Replies

Disable TextBox On Client-side Click On CheckBox?

Apr 3, 2010

How to disable asp:TextBox on client-side click on HTML checkbox or server-side asp:CheckBox using JavaScript?

<script type="text/javascript" language="javascript">
function enableTextbox() {
// ?[code]....

View 3 Replies

Disable A Checkbox In Javascript And Recognize It As Checked On The Server Side?

Mar 17, 2010

I have a checkbox which in some cases may be disabled and checked using javascript, i.e:

var cbTest = document.getElementById("CheckBoxTest");
cbTest.disabled = true;
cbTest.checked = true;

However, when sending a postback, CheckBoxTest.Checked is false on the server side.

Is it possible to disable the checkbox and still have the server side recognize it as checked?

View 5 Replies

Forms Data Controls :: Enable / Disable The Checkbox In Gridview?

Jul 9, 2010

Based on some condition, I need to enable and disable the checkbox in gridview and that would be on page_load event.

View 1 Replies

Data Controls :: Disable Other CheckBoxes If One CheckBox Is Checked In GridView

Mar 6, 2014

i want to disable other checkbox if one is selected inside gridview . i want to make that on clientside using javascript or jquery.below is the code

<html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server">
<title>Untitled Page</title>
<script src="selectedradio.js" type="text/javascript"></script>
<script type="text/javascript"> $().ready(function(){
$("#CheckBox1").click(function(){
$('input[type=checkbox]').each(function () {

[code]....

View 1 Replies

Data Controls :: Disable CheckBox Inside GridView Once Checked

Oct 26, 2013

I am using Checkbox in Gridview item template once it checked it cant be unchecked..once i click the button the checked box should automatically unchecked.

View 1 Replies

Web Forms :: Disable Multiple Selection In CheckBox List Control

May 5, 2012

I have a checklistbox like this :

<asp:CheckBoxList ID="chklstSector1" runat="server" AutoPostBack="True" ></asp:CheckBoxList>

it allow multiple selection..i want it should select only one from list and does't allow multiple selection..

View 1 Replies

Web Forms :: Enable Disable Validators In GridView Row Based On CheckBox Selection?

Nov 28, 2012

I have one gridview with two template fields check box and dropdown and my doubt is dropdown validation should occur only for check box selected items..

 In my form all the dropdown shows validation even though if check box is not selected

<Columns>
<asp:TemplateField>
<ItemTemplate>

[Code]....

View 1 Replies

Web Forms :: Enable Disable CheckBox In ListView Control Based On Database Value?

May 7, 2015

I want to make checkboxes which are already Checked to non editable or readonly to true.

View 1 Replies

Data Controls :: Enable Disable Button When At Least One CheckBox Is Checked In GridView

May 7, 2015

I want a solution for checkbox Check changed.in my gridview when i check on any row it hits check changed event and i have made a button visible if atleast one checkbox is checked.(But when i uncheck i want the button to get hidden if no row is selected).

View 1 Replies

Forms Data Controls :: Enable And Disable Textbox While Selecting Checkbox In Samegridview?

Oct 22, 2010

when i click on the checkbox in the gridview column1 the textbox column4 should be enabled author wise textbox should be disabled...........

View 1 Replies

Data Controls :: Enable Disable DropDownList Inside GridView Based On CheckBox

Feb 19, 2014

How to enable & disable data value from selected table ?

For Example,  select ID from employeeTlb(for Dropdownlist function) then in asp:checkbox able to tick enable & disable that control  the  data in dropdownlist show/ hide ?

View 1 Replies

Forms Data Controls :: Disable Autopostback Of Checkbox Inside Of GridView During SelectedIndexChanged Of ListView

Sep 8, 2010

I have a checkbox placed inside a gridview:

<GridView><asp:TemplateField HeaderText="Driver"> <ItemTemplate> <asp:CheckBox ID="CheckBoxDriver" AutoPostBack="true" OnCheckedChanged="GridView_Persons_SelectedIndexChanged" ValidationGroup='<%# Eval("ID") + "-" +((GridViewRow)Container).RowIndex %>' CssClass="CXDriver" runat="server" Checked='false' /> </ItemTemplate> </GridView>

For example: A listViewItem 1 has 3 drivers are checked, A listViewItem 2 has 2 drivers are checked.

Therefore, if changing the selectedIndex of the list, the checkbox indexChanged event will be fired.

How could I disable the autopostback of the checkbox during the listview item changed.

View 5 Replies

Web Forms :: Get Text From Dynamically Created Number Of Text Boxes?

Jul 26, 2010

I am trying to figure out how to get the text value from each textbox on a page that has a dynamically created number of text boxes. I need to store that value in a database row. I guess what i need is to be able to store the text box values in a collection or arrary of some sort and then be able to use textbox(i).value or something of that nature. Not really sure where to begin.

View 5 Replies

Web Forms :: Textbox.text And Label.text Won't Change Dynamically?

Oct 20, 2010

I have an asp page with a textboxes, labels and other controls. I cannot get the .text to change in any of these controls. I click on button which I execute code that I expect to update the text but it doesn't work. Something like Textbox1.text = "Hello" Are there page level properties/settings I should look at? I am perplexed an looking for a place to start. I will provide more information as needed. I just don't know where to start.

View 3 Replies

Web Forms :: Enable / Disable WebControls Dynamically?

May 10, 2010

I have a webpage that inherits a masterpage. Within the webpage I have the content palceholder and then a table within that that contains all the controls of the page. Like below:

[Code]....

I want to be able to change the fields to readonly if a field in the database for the user says they should have readonly access. I can't seem to find the level to go to in order to loop through the controls of the page to set their access to readonly.

I have gotten down to this level and it seems like it is in the base of this.

WebForm.Page.TemplateControl

View 3 Replies

Dynamically Disable JQuery Datepicker Icon

Feb 24, 2010

I'm fairly new to jQuery and I've been looking for a decent free datepicker for a while now. I am quite satisfied with jQuery UI's datepicker but I've hit a snag. The project where I'm using this requires that I have an icon beside the textbox. While this is fairly easy, I don't know how to dynamically disable the icon. There are two things I'm interested in knowing:

How can I dynamically change the disabled status of the datepicker from code-behind so that it triggers on postback? Is it possible to make it's disabled status dependent on the textbox that it is attached to? (i.e. if

<asp:TextBox Id="txtMyTextBox" Enabled="false">

then datepicker gets disabled as well.

This is the code I've been using for the datepicker.

<script type="text/javascript">
$(function() {
$("*[id$='txtMyTextBox']").datepicker({
changeMonth: true,
changeYear: true,
showOn: 'button',
buttonImage: '/images/icon-calendar.gif',
buttonImageOnly: true
});
});
</script>

View 3 Replies







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