﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - ClientUI - Radio Button column for UXGridView</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Radio-Button-column-for-UXGridView/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Radio Button column for UXGridView</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Radio-Button-column-for-UXGridView/</link><pubDate>Sun, 03 Feb 2013 19:47:14 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;I’m really sorry for the delay in sending this.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;The reported problem has been forwarded to the team for further investigation. I will let you know any news I heard from the team regarding this.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;&lt;strong&gt;Edited on February 26, 2013 01:25 AM&lt;br /&gt;Reason: Update Latest Status&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: rgb(31, 73, 125); font-size: 9pt;"&gt;The ClientUI development team suspects that this problem may cause by the UXRadioButton. The bug has been forwarded to be investigated further and filed under Bug 1255.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Radio Button column for UXGridView</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Radio-Button-column-for-UXGridView/</link><pubDate>Wed, 30 Jan 2013 00:15:24 GMT</pubDate><dc:creator>gzhebrunov@googlemail.com</dc:creator><description>Hello Yudi,&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;Thank you for response. I made simple project from template and adds grid view into it, but radio buttons working regardles GroupName and may be checked on all rows. I need only one radio button checked at one time (so all is in one group). Please see attached file.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Upd: Any news regarding issue? Thanks.&lt;/div&gt;&lt;/div&gt;</description></item><item><title>Radio Button column for UXGridView</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Radio-Button-column-for-UXGridView/</link><pubDate>Tue, 29 Jan 2013 02:30:50 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Please try to use CheckedState instead of IsChecked property of UXRadioButton. The CheckedState property gets or sets the value that determines the checked state of the control.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;I tried to reproduce the reported problem in my local test by adding UXGridViewTemplateColumn and put UXRadioButton as the data template. I’m binding the CheckedState property of UXRadioButton by using following snippet code.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;Intersoft:UXGridViewTemplateColumn Header="Discontinued" Binding="{Binding Discontinued}"&amp;gt;
    &amp;lt;Intersoft:UXGridViewTemplateColumn.CellTemplate&amp;gt;
        &amp;lt;DataTemplate&amp;gt;
            &amp;lt;Intersoft:UXRadioButton CheckedState="{Binding Discontinued}" /&amp;gt;
        &amp;lt;/DataTemplate&amp;gt;
    &amp;lt;/Intersoft:UXGridViewTemplateColumn.CellTemplate&amp;gt;
&amp;lt;/Intersoft:UXGridViewTemplateColumn&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;However, my efforts to replicate the problem were not successful.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;I’m willing to advice you further but in order to do so I would need you to elaborate on your specific scenario and possibly provide me with a running simple sample and a step-by-step guide that I can use to observe the problematic behavior.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Radio Button column for UXGridView</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Radio-Button-column-for-UXGridView/</link><pubDate>Mon, 28 Jan 2013 08:03:00 GMT</pubDate><dc:creator>gzhebrunov@googlemail.com</dc:creator><description>&lt;p&gt;I need readio button column inside grid view. I trying to implement it using template:&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;&amp;lt;Intersoft:UXGridView ItemsSource="{Binding SomeSource, Mode=OneWay}" AutoGenerateColumns="False" &amp;gt;&lt;/span&gt;&lt;/p&gt;
&lt;p /&gt;
&lt;p&gt;                    &amp;lt;Intersoft:UXGridView.Columns&amp;gt;&lt;/p&gt;
&lt;p&gt;                        &amp;lt;Intersoft:UXGridViewTemplateColumn Header="SELECT"&amp;gt;&lt;/p&gt;
&lt;p&gt;                            &amp;lt;Intersoft:UXGridViewTemplateColumn.CellTemplate&amp;gt;&lt;/p&gt;
&lt;p&gt;                                &amp;lt;DataTemplate&amp;gt;&lt;/p&gt;
&lt;p&gt;                                    &amp;lt;Intersoft:UXRadioButton GroupName="sel"  IsChecked="{Binding Path=IsSelected, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"&amp;gt;&amp;lt;/Intersoft:UXRadioButton&amp;gt;&lt;/p&gt;
&lt;p&gt;                                &amp;lt;/DataTemplate&amp;gt;&lt;/p&gt;
&lt;p&gt;                            &amp;lt;/Intersoft:UXGridViewTemplateColumn.CellTemplate&amp;gt;&lt;/p&gt;
&lt;p&gt;                        &amp;lt;/Intersoft:UXGridViewTemplateColumn&amp;gt;&lt;/p&gt;
&lt;p&gt;...&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Radio button showings fine and is clickable, but looks like grouping not working and all radio button can be checked at same time. Is it possible to have radio button standard functionality - so only one can be checked per grid?&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p /&gt;</description></item></channel></rss>