Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6821309
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T21:31:47+00:00 2026-05-26T21:31:47+00:00

I have a radio button control with two items in it. <xforms:select1 ref=add-delete appearance=full>

  • 0

I have a radio button control with two items in it.

<xforms:select1 ref="add-delete" appearance="full">
    <xforms:item>
        <xforms:label>Add</xforms:label>
        <xforms:value>A</xforms:value>
    </xforms:item>
    <xforms:item>
        <xforms:label>Delete</xforms:label>
        <xforms:value>D</xforms:value>
    </xforms:item>
</xforms:select1>

I want to disable only the radio button ‘Delete’ and not the radio button ‘Add’ on condition X. How can I carry out this ?

I tried using class attribute with xforms:item but that is not working. Is there any other way to do this ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T21:31:48+00:00Added an answer on May 26, 2026 at 9:31 pm

    Good question. And unfortunately, this isn’t as easy to do as it should:

    If you just wanted the delete radio button to be hidden, instead of disabled, you can replace the <xforms:item> for the “Delete” by an <xforms:itemset ref="…"> that you bind to a node which you make non-relevant when you want that radio button not to show. But you can’t use that same technique to disable the radio button by binding the itemset to a node you make read-only. (And yes, it would be good if you could do that.)

    As it stands, I think you’ll need to:

    1. Create 2 <xforms:select1>. One for “Add”, one for “Delete”, so you can make the second one readonly upon some condition.
    2. To make it readonly, but not have the “Add” be read-only as well, you need to bind them to 2 separate node.
    3. If you want to have 1 node with either A or D, you need to create a calculate to populate that node based on the 2 values.
    4. You want the values to be exclusive, and they won’t be if you have two <xforms:select1>, so you need to deselect “delete” when “add” is selected reacting to xforms-select, and vice versa.

    In the model, you would have:

    <xforms:instance>
        <instance>
            <add/>
            <delete/>
            <add-delete/>
            <delete-enabled>true</delete-enabled>
        </instance>
    </xforms:instance>
    <xforms:bind ref="add-delete" calculate="string-join((../add, ../delete), ' ')"/>
    <xforms:bind ref="delete" readonly="../delete-enabled = 'false'"/>
    

    And in the view:

    <xforms:select1 ref="instance()/add" appearance="full">
        <xforms:item>
            <xforms:label>Add</xforms:label>
            <xforms:value>A</xforms:value>
        </xforms:item>
        <xforms:setvalue ev:event="xforms-select" ref="instance()/delete"/>
    </xforms:select1>
    <xforms:select1 ref="instance()/delete" appearance="full">
        <xforms:item>
            <xforms:label>Delete</xforms:label>
            <xforms:value>D</xforms:value>
        </xforms:item>
        <xforms:setvalue ev:event="xforms-select" ref="instance()/add"/>
    </xforms:select1>
    

    And see this Gist for the full source of this example.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a radio button control adaptor that attempts to render the radio button
I have two fields which calculate a total, but I have a radio button
I have to make a custom control made of two radio buttons in ASP
I have designed a radio button custom control. it works fine on my computer
I know xcode don't have radio Button so I try to add a custom
I have a radio button list control on my ascx page and have a
I've got a form where I have two radio buttons and two interchangeable controls
I have radiobutton in Silverlight 3 with FontSize=20. Within the control the radio dialog
I have a radio button on my Windows Form. How can I determine if
I have a radio button list and some of the labels are quite long

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.