Path: news.mathworks.com!not-for-mail
From: <HIDDEN>
Newsgroups: comp.soft-sys.matlab
Subject: Re: Button Callback - Matlab Issue
Date: Thu, 22 Oct 2009 17:22:19 +0000 (UTC)
Organization: Teles AG
Lines: 6
Message-ID: <hbq4cb$ecq$1@fred.mathworks.com>
References: <hbpqj1$i7o$1@fred.mathworks.com> <hbptbe$3uc$1@fred.mathworks.com> <hbq01l$of$1@fred.mathworks.com>
Reply-To: <HIDDEN>
NNTP-Posting-Host: webapp-02-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1256232139 14746 172.30.248.37 (22 Oct 2009 17:22:19 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Thu, 22 Oct 2009 17:22:19 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 1095707
Xref: news.mathworks.com comp.soft-sys.matlab:579390


If I understood right you want to implement a callback of a pushbutton.
That can mean the action occurs not by selecting a radio button?

In this case a variable like "handles.myCaseId" is a good solution.

If action shall occure by clicking a radio button AND they are exclusive, meaning activating one radio will deactivate the other(s), then a buttonGroupBox is the solution. In this case you can implement the selectionChanged-function of the buttonGroupBox.