view m-toolbox/classes/@repogui/cb_fieldSelect.m @ 46:ca0b8d4dcdb6
database-connection-manager
Fix
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Tue, 06 Dec 2011 19:07:27 +0100 (2011-12-06)
parents
f0afece42f48
children
line source
+ − % CB_FIELDSELECT callback executed when a field is selected
+ − %
+ − % M Hewitson
+ − %
+ − % $Id: cb_fieldSelect.m,v 1.2 2011/04/08 08:56:26 hewitson Exp $
+ − %
+ − function cb_fieldSelect(varargin)
+ −
+ −
+ − mainfig = varargin{end};
+ −
+ − %---- Set the order by field to the first in this list
+ −
+ − % Get selected fields
+ − fieldList = findobj(mainfig.handle, 'Tag', 'fieldsList');
+ − fieldsStr = get(fieldList, 'String');
+ − vals = get(fieldList, 'Value');
+ − fields = fieldsStr(vals);
+ −
+ − orderBy = findobj(mainfig.handle, 'Tag', 'fieldOrderBy');
+ − set(orderBy, 'Value', 1);
+ − set(orderBy, 'String', fields);
+ −
+ −
+ − % Build query
+ − repogui.buildquery(mainfig);
+ −
+ − end