Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / Silverlight > Buttons > Checked RadRadioButton Visualisation after Re-Enabling

Not answered Checked RadRadioButton Visualisation after Re-Enabling

Feed from this thread
  • Jani avatar

    Posted on Nov 19, 2009 (permalink)

    I have a RadRadioButton which is checked (IsChecked=true).
    The RadRadioButton is child of an MS Activity Control, which disables/enables all child control during long operations.
    After Re-Enabling the RadRadioButton, it will be rendered like an unchecked button (The property IsChecked is still true).
    It seems to be an theme issue...

    Cheers,
    Jani

    Reply

  • Kiril Stanoev Kiril Stanoev avatar

    Posted on Nov 19, 2009 (permalink)

    Hello Jani,

    Thank you for reporting this issue. Indeed it is a theming issue. I have logged it and we will try to fix it for our Service Pack 1 release. I have also added 1000 Telerik points to your account.

    Sincerely yours,
    Kiril Stanoev
    the Telerik team

    Instantly find answers to your questions on the new Telerik Support Portal.
    Watch a video on how to optimize your support resource searches and check out more tips on the blogs.

    Reply

  • Jason Jason's avatar

    Posted on Feb 8, 2012 (permalink)

    From what I can tell this is still a bug.  I did find a work-around to this issue.  After I re-enable my controls, including the RadRadioButton, I uncheck the "checked" item then check it again.  This seems to force the button to be checked after the control is no longer disabled.  Here is a code snippet of what worked for me.  Thanks!

    if (myObject.IsAnswerYes == true)
    {
        chkAnswerYes.IsChecked = false;
        chkAnswerYes.IsChecked = true;
    }
    else
    {
        chkAnswerNo.IsChecked = false;
        chkAnswerNo.IsChecked = true;
    }

    Reply

  • Zarko Zarko admin's avatar

    Posted on Feb 13, 2012 (permalink)

    Hi,
    Thank you for the feedback. I'm glad to tell you that this bug is already fixed and the fix will be available in our next major release - Q1 2012 later this week.
    If you have more questions please don't hesitate to ask.

    Regards,
    Zarko
    the Telerik team
    Sharpen your .NET Ninja skills! Attend Q1 webinar week and get a chance to win a license! Book your seat now >>

    Reply

  • Valeriu avatar

    Posted on May 7, 2012 (permalink)

    Can you confirm that this issue is fixed in current release?

    I have in my code:

      <telerik:RadToggleButton IsChecked="{Binding IsActive}"

    And it doesn't change it's visual state when IsActive flag is updated from my view model.

    Reply

  • Zarko Zarko admin's avatar

    Posted on May 10, 2012 (permalink)

    Hello Valeriu,
    As far as we know this issue is fixed and it should be working. Could you please send us some code snippets or a sample project which shows the problem because I wasn't able to recreate it?
    I've attached the sample project that I used for testing so you could examine it and see it helps you.
    We're looking forward to hearing from you.

    Greetings,
    Zarko
    the Telerik team

    Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

    Attached files

    Reply

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / Silverlight > Buttons > Checked RadRadioButton Visualisation after Re-Enabling