Can't able to enable the Textarea in Google Chrome

Hi,
I can't enable(readonly="true") the textarea to enter some text based on radio buttons, if I click 'Yes' the textarea should enable and allow me to type some text, if I click 'No' the textarea should goes to disable(readonly="false") it wont allow me to type some text. The above functions are worked in both IE and Firefox, but it doesn't work in Google Chrome. I don't know what's wrong with this code. If anybody find the solution, please let me know.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> Test </TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
<script type="text/javascript">
function enableBoxes(chkVal,txtBox)
if (document.getElementById(chkVal).checked == true)
     document.getElementById(txtBox).readOnly = false;
     else
     document.getElementById(txtBox).readOnly = true;
     document.getElementById(txtBox).value = "";
</script>
<body>
<table>
<tr>
<td height="22" align="left" valign="bottom">No. of Chairs: </td>
<td height="22" colspan="2" align="left" valign="middle">
<input name="chairs" id="chairs" type="radio" value="Y" onclick="enableBoxes('chairs','noofchairs')" />
<label for="chairs">Yes</label>
<input name="chairs" id="chairs_no" type="radio" value="N" checked="checked" onclick="enableBoxes('chairs','noofchairs')"/>
<label for="chairs_no">No</label>
<textarea name="noofchairs" id="noofchairs" type="text" readonly="readonly"></textarea>
</td>
</tr>
</table>
</body>
</html>Thanks in Advance,
Prasath.

Check this link
[http://code.google.com/p/chromium/issues/detail?id=13826|http://code.google.com/p/chromium/issues/detail?id=13826]
A bug has been reported. This question is not related to JSP though.

Similar Messages

  • Can we able to see the Work Items status in the BPM Workspace

    HI,
    Can we able to see the work item status in the BPM workspace.
    For exampls, I have create the request as requester then it will go for approval.
    After sometime i login into the workspace can i able to see my request status(it mean where it is like approval1, approval 2)?
    Pls let me know, its possible in the BPM workspace.
    Regards,
    Anandh P

    Hello Anandh,
    You can utilse the filter option of the BPM workspace.
    When you filter the instances you can view the status of all the instances even if they are currently not assigned to the particular user.
    All you need to do is click on the show filter link.
    Select the process from the Filter by: combo box.
    Check the status boxes and click on apply filter.
    You will be able to view the instance even if it is not assigned to you.(Though you will not be able to work on it.)
    If you wish to give custom messages like "pending with HR" or "Pending with Admin" then you need to add a column by creating a project variable and mapping it to the custom view. Then these messages can also be shown on the instances.
    Hope ths helps.
    Regards,
    Jaydev Doshi

  • Can iPhone able to read the external device like card reader or U DISK

    Can iPhone able to read the external device like card reader or U DISK?
    If not can we use SDK3.0 to make this function on iphone UI?

    No.

  • Can't able to access the duplicate control?

    I have created the duplicate control in tabpage as shown in below code snippet. but i can't able to access the created object.
    Code Snippet
     private void button1_Click(object sender, EventArgs e)
                TabPage newPage = new TabPage();
                foreach (Control c in  tabControl1.TabPages[0].Controls)
                    Control cNew = (Control)Activator.CreateInstance(c.GetType());
                    PropertyDescriptorCollection pdc = TypeDescriptor.GetProperties(c);
                    foreach (PropertyDescriptor entry in pdc)
                        object val = entry.GetValue(c);
                        entry.SetValue(cNew, val);
                    newPage.Controls.Add(cNew);
                tabControl1.TabPages.Add(newPage);

    Hi Carl,
    Thanks for your update.
    Now I got some idea. But I have one more issue. 
    During button click the I need all the properties in textbox in TabPage1 to the textbox in NewTabPage(refer above image). but later if we change in text in any textbox the replaced text should not reflects the other text.
    E.g: If textbox.text="Microsoft";
    during buttonclick i need the textbox in New Tab Page should be Microsoft. 
    later if I edit the text should not New Tab Page or TabPage1 the text should not reflects from one control to other.
    Regards,
    R.Senthil Kumaran
    Hello,
    I could get what you are dealing with now, and to get that done, I would recommend you use the following way.
    1. Add properties to UserControl, you could define the names of these properties with custom rules.
    public partial class UserControl1 : UserControl
    public UserControl1()
    InitializeComponent();
    public string StrTxtBox1
    get { return this.textBox1.Text ; }
    set { this.textBox1.Text = value; }
    2. Use similar way you shared and edit it to just copy the specific properties.
    TabPage newPage = new TabPage("NewTabPage");
    newPage.UseVisualStyleBackColor = tabControl1.TabPages[0].UseVisualStyleBackColor;
    foreach (Control c in tabControl1.TabPages[0].Controls)
    Control cNew = (Control)Activator.CreateInstance(c.GetType());
    PropertyDescriptorCollection pdc = TypeDescriptor.GetProperties(c);
    foreach (PropertyDescriptor entry in pdc)
    if (entry.DisplayName == "StrTxtBox1"|| entry.DisplayName == "Location")
    object val = entry.GetValue(c);
    entry.SetValue(cNew, val);
    newPage.Controls.Add(cNew);
    tabControl1.TabPages.Add(newPage);
    In this case, if we have a lot perproties to copy, you could consider capture them by the custom rules you defined at #1 like this one.
    if (entry.DisplayName.Contains("StrTxt")|| entry.DisplayName == "Location")
    object val = entry.GetValue(c);
    entry.SetValue(cNew, val);
    Result:
    And if possible, you could consider using this way which just copies the Text , Location or any other property and we don't need to create any usercontrol.
    TabPage newPage = new TabPage("NewTabPage");
    newPage.UseVisualStyleBackColor = tabControl1.TabPages[0].UseVisualStyleBackColor;
    foreach (Control c in tabControl1.TabPages[0].Controls)
    Control cNew = (Control)Activator.CreateInstance(c.GetType());
    PropertyDescriptorCollection pdc = TypeDescriptor.GetProperties(c);
    foreach (PropertyDescriptor entry in pdc)
    if (entry.DisplayName == "Text" || entry.DisplayName == "Location")
    object val = entry.GetValue(c);
    entry.SetValue(cNew, val);
    newPage.Controls.Add(cNew);
    tabControl1.TabPages.Add(newPage);
    Regards.
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can't able to access the Jar files which is kept inside the folder.

    Hi,
    I am using the eclipse IDE, my project folder contains the folders src, bin, .metadata, .settings
    if i place the jar file in the same location of the above mentioned folder means i can able to use the Jar file in eclipse(in my project).
    But i create one folder in the same location in the name of Jar or anything and all jar files are placed inside the folder,then i can't able to access the jar file in eclipse(in my project).
    How i can solve this problem?

    RajivGuna wrote:
    ..How i can solve this problem?Put Eclipse aside for the moment and learn how the SDK tools work at the level of the command line, then you will be much better placed to figure how to do it in the IDE. If you are still having problems, I suggest you ask on an [Eclipse forum|http://www.eclipse.org/forums/].

  • Can't able to edit the query in query designner

    Hello every one,
                           Please help me in below issue. It is really important.
    Actually i have create the query in the BI- Development and that i pass to the production.
    Now. I tried to again edit the same query in the development , and for that i have create a new request . after creating the requesting i again logged in to the BEx query designner , but still i can not able to edit the query..
    i have create the request in the correct manner. So, what will i do now? Please help me in this.

    HI Gaurav,
                   Again i create a request by below steps
    ->open the ADW by RSA1
    ->go to Transport connection
    ->go to query element - > select my query -> select all necessary query element -> and then click on the truck symbol (i have not create BEx request)
    and then i create the request
    then i open the query in the designer and again i can not able to edit the query
    error is same
    -> BEx transport request is not available or not suitable
    -> choose an existing request
    Now,tell me what can i do? this is really an issue for me and help me to solve..Please all other can also give there comments
    one more thing i want to add is , i have also check the object changabilty , there the query element and all related to query are  "not changable". Is this an issue.
    Edited by: james macwan on Oct 16, 2008 8:39 AM

  • Not able to Enable the Custom Ribbon button On Pages in Sharepoint 2013

    Hi Team,
    Not able to Enable the Custom Ribbon button On Pages in SharePoint 2013. we have used the button edit properties section of the Pages.
    Same is working for Lists but not for Pages.
    Thanks,
    Shrikant

    Thanks for your reply.
    Right now my server is not working to get the code. will share you in some time.
    I am just thinking if page get checked out and my control is also present in the Edit properties section then do I need to specify something explicitly to enable the button. The same is working for Lists.

  • Can we able to delete the particular request

    HI,
    We have code for to deleting all request from Database.
    Can we able to delete the particular request from the Database.
    For example, I have request start from 100 to 150.
    If i want to delete the request : 125, is any way we can pull all requests in the dropdown and delete the particular request.
    Pls any one give a suggestion, how can we archive this?
    Regards,
    Anandh P

    Hi Anandh,
    Kevin is right you can use the workspace and use a grab (and then abort) to "delete" the instance.
    It will no longer be running and will be viewed as aborted.
    You can create a custom UI by using the PAPI or PAPI-WS depending on you preferences.
    However if I'm not mistaken there is a third option that is the deletion of instances from the database.
    I believe there is a PL/SQL procedure that can be run to delete all instances from the database. However this isn't limited to a single instances..
    ---( Can someone confirm this.. I'm not sure if this is for BPM or just for SOA Suite?) ---
    Hope this helps.
    Kind Regards,
    Nils

  • My iphone screen is broken and i wanna restore the phone but i can't because i enable the 'find my iphone' and now i cant restore it . what can i do? help me plz

    my iphone screen is broken and i wanna restore the phone but i can't because i enable the 'find my iphone' and now i cant restore it . what can i do? help me plz

    There's no way to "restore" your phone, but, you can login to iCloud.com, using your computer, locate your phone, then erase it.

  • How can i able to see the Task in CWB Administrator page

    Hi Everyone,
    Hope everybody is doing fine !
    Here i'm requesting for help in CWB administrator setup, i have done the CWB setup as required like;
    1. Defined Plan Years
    2. Defined Life Event Reasons.
    3. Defined Plan Type.
    4. Defined Plan. (4.1. Defined Task within Compensation Workbench Tab)
    5. Defined Plan Enrollment Requirements.
    6. Defined Standard Rates.
    7. Run Program "Participation Process: Compensation Workbench"
    8. Found require employees processed sucessfully from log.
    9. Loged in as Manager/Administrator > Open Compensation Workbench Administrator page
    10. Found message "There is no Task for Employee"
    So could anybody please help me, how can i able to see the task work sheet in CWB administrator page.
    Regards
    AshokP

    Hi Avinash,
    Thanks For Your Response,
    I have created task in Plan window (Navigate to Details > Compensation Workbench (Select Task Type) with Full Access.
    So could you please advise me, whether i'm skipping any step as you have been stated like Task needs to be define under 'Plan Enrollment Requirement Window'
    Thanks
    AshokP

  • I just bought a laser jet M1217 MFP and I wasn't able to enable the web services

    I just bought a laser jet M1217 MFP and I wasn't able to enable the web services

    Hi Aloolaab,
    I understand that you're trying to enable web services on your printer.  I would try the steps below.
    1. Open an internet browser type printer's IP address.
    2. Should bring you to the printer's status page.
    3. Select networking tab at the top.
    4. Left hand side select Network Identification.
    5. Under DNS address Configuration select Manual DNS Server.
    6. For Preferred enter 8.8.8.8
    7. For Alternate enter 8.8.4.4
    8. Select apply. You might get a warning saying this could interrupt connection that's fine.
    9. Turn printer off for about 30 seconds then try again.

  • HT1329 hi i need help with my ipod nano i want to get my music from my ipod to i tunes so that i can be able to transfer the music on my i tunes to my ipad mini can you help me with that ?

    hi i need help with my ipod nano i want to transfer my music from the ipod to the itunes so that i can be able to transfer the music to my ipad can you help me with that ?

    You cannot use iTunes to transfer song files from iPod to computer, except for songs purchased from the iTunes Store.  However, there are third-party methods and utilities that can transfer from iPod to computer.  If you do an Internet search on something like"iPod transfer," you should get some links.  (The CNET article seems to be popular.)
    Once the song files are on your computer's drive, you can add them to your iTunes library, and then sync your iPad.

  • I am using 3GS in my iPhone I can't able to see the wallpaper

    I am using 3GS in my iPhone I can't able to see the wallpaper

    Could you please edit your question and include more details about your problem as I do not complelty understand your problem.
    Thanks,
    - Tim

  • I can't able to access the itunes stores to download and update new apps

    iam using iphone4 for more than a six months. but for the last 10days i can't able to access the itunes store to download a app or to update it. what should i do. my itunes is opening properly. i can download videos pictures and songs from my system. the problem is only with itunes stores. i also updated the account information. which also doesnt got solved the problem. what should i do??

    http://support.apple.com/kb/TS1559

  • We are facing issue to open a static form PDF in Chrome Browser , which is loaded using Adobe FormService.Able to open in other browsers but not able to open the static forms in chrome with LC 11.0 version

    We are facing issue to open a static form PDF in Chrome Browser
    , which is loaded using Adobe FormService.
    Able to open in other browsers but not able to open the static
    forms in chrome with LC 11.0 version
    Below error message:
    The document you are trying to load
    requires Adobe Reader 8 or higher. You may not have the Adobe Reader installed
    or your viewing environment may not be properly configured to use Adobe Reader.
    For information on how to install Adobe Reader and configure your viewing
    environment please see http://www.adobe.com/go/pdf_forms_configure.
    Please let us know do we have any option for disabling
    <NoXFA/> tag by calling formService. RenderPDF() method on adobe service
    For dynamic forms its working by adding <NOXFA/> in
    DDX xml . only for static forms its not working because we are not using
    assembler service for this forms.
    Please let us know how we can disable XFA in static forms??????????????????

    If anyone is reading this still looking for what caused the issue and how to fix it here is what I discovered.
    The antivirus program our company uses, Bitdefender Antivirus Plus, was causing some of the PDF files not to open. After troubleshooting the different modules and settings the culprit was..
    Scan SSL in Privacy Control Settings. Turning it OFF solved the problem and all the PDF files that previously would not open now open just fine. This issue has been sent to Bitdefender for them to review. If you use a different antivirus program and are having this issue try locating the Scan SSL setting and see if turning it off solves the problem.

Maybe you are looking for