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
|
@ -361,6 +361,10 @@ public class TableCreateColumns extends SvrProcess
|
|||
|| columnName.toUpperCase().startsWith("CREATED")
|
||||
|| columnName.toUpperCase().equals("UPDATED") ))
|
||||
column.setIsUpdateable(false);
|
||||
|
||||
// Check if is a possible selection column
|
||||
if (MColumn.isSuggestSelectionColumn(column.getColumnName(), false))
|
||||
column.setIsSelectionColumn(true);
|
||||
|
||||
// Done
|
||||
if (column.save ())
|
||||
|
|
Loading…
Reference in New Issue