Subversion Repository Public Repository

litesoft

Diff Revisions 215 vs 216 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/datatables/FilteringTableModel.java

Diff revisions: vs.
  @@ -179,18 +179,9 @@
179 179 }
180 180
181 181 @Override
182 - public void uniqueFilterValueChanged( String pAttributeName, String pValue )
182 + public void filterValueChanged( BoAccessorFilterType pFilterType, String pAttributeName, String pValue )
183 183 {
184 - if ( mFilterManager.setUniqueFilter( pAttributeName, pValue ) )
185 - {
186 - chkList();
187 - }
188 - }
189 -
190 - @Override
191 - public void nonUniqueFilterValueChanged( String pAttributeName, String pValue )
192 - {
193 - if ( mFilterManager.setNonUniqueFilter( pAttributeName, pValue ) )
184 + if ( mFilterManager.setFilter( pFilterType, pAttributeName, pValue ) )
194 185 {
195 186 chkList();
196 187 }