Specify exactly which are the search fields
Implemented as discussed in forum thread. Sponsored by Metas GmbH. Link to SF Tracker: http://sourceforge.net/support/tracker.php?aid=3016592
This commit is contained in:
parent
7a4ad64e8e
commit
99a348c5c0
|
|
@ -362,6 +362,10 @@ public class TableCreateColumns extends SvrProcess
|
||||||
|| columnName.toUpperCase().equals("UPDATED") ))
|
|| columnName.toUpperCase().equals("UPDATED") ))
|
||||||
column.setIsUpdateable(false);
|
column.setIsUpdateable(false);
|
||||||
|
|
||||||
|
// Check if is a possible selection column
|
||||||
|
if (MColumn.isSuggestSelectionColumn(column.getColumnName(), false))
|
||||||
|
column.setIsSelectionColumn(true);
|
||||||
|
|
||||||
// Done
|
// Done
|
||||||
if (column.save ())
|
if (column.save ())
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue