Commit 46323cc9 authored by Ivan Tyagov's avatar Ivan Tyagov

Use listbox property name in accordance with rest of listbox naming convention.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@38286 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 3db8b3d9
...@@ -415,19 +415,19 @@ class ListBoxWidget(Widget.Widget): ...@@ -415,19 +415,19 @@ class ListBoxWidget(Widget.Widget):
required=0) required=0)
property_names.append('default_display_style') property_names.append('default_display_style')
full_text_search_key = fields.StringField('full_text_search_key', global_search_column = fields.StringField('global_search_column',
title="Full text search key", title="Global search column",
description=("Full text search key used to make query."), description=("Global search column make query."),
default=None, default=None,
required=0) required=0)
property_names.append('full_text_search_key') property_names.append('global_search_column')
full_text_search_key_script = fields.StringField('full_text_search_key_script', global_search_column_script = fields.StringField('global_search_column_script',
title="Full text search key script", title="Global search column script",
description=("Full text search key script used to make query."), description=("Global search column script used to make query."),
default=None, default=None,
required=0) required=0)
property_names.append('full_text_search_key_script') property_names.append('global_search_column_script')
page_navigation_mode = fields.StringField('page_navigation_mode', page_navigation_mode = fields.StringField('page_navigation_mode',
title="Page navigation mode", title="Page navigation mode",
...@@ -986,17 +986,17 @@ class ListBoxRenderer: ...@@ -986,17 +986,17 @@ class ListBoxRenderer:
getDefaultDisplayStyle = lazyMethod(getDefaultDisplayStyle) getDefaultDisplayStyle = lazyMethod(getDefaultDisplayStyle)
def getFullTextSearchKey(self): def getGlobalSearchColumn(self):
"""Return the full text search key.""" """Return the full text search key."""
return self.field.get_value('full_text_search_key') return self.field.get_value('global_search_column')
getFullTextSearchKey = lazyMethod(getFullTextSearchKey) getGlobalSearchColumn = lazyMethod(getGlobalSearchColumn)
def getFullTextSearchKeyScript(self): def getGlobalSearchColumnScript(self):
"""Return the full text search key script which is responsible for handling full text query.""" """Return the full text search key script which is responsible for handling full text query."""
return self.field.get_value('full_text_search_key_script') return self.field.get_value('global_search_column_script')
getFullTextSearchKeyScript = lazyMethod(getFullTextSearchKeyScript) getGlobalSearchColumnScript = lazyMethod(getGlobalSearchColumnScript)
def getPageNavigationMode(self): def getPageNavigationMode(self):
"""Return the list box page navigation mode.""" """Return the list box page navigation mode."""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment