Tagged Questions
The rowfilter tag has no wiki summary.
6
votes
2answers
440 views
Why does DataTable.Select() return the wrong rows?
The DataTable.Select() function returns the wrong rows with a filter like this...
"booleanColumn1 AND booleanColumn2 AND GuidColumn1 = '00000000-0000-0000-0000-000000000000')"
Making virtually any ...
5
votes
2answers
170 views
Highlights subString in the TableCell(s) which is using for JTable filetering
how is possible to synchonize text typed into JTextField (then by DocumentListener passed String to the RowFilter) with TableCell if contains same as String value in JTextField/Document,
and then ...
3
votes
1answer
593 views
“Concatenating” andFilter and orFilter for RowFilter
I have a JTable with four columns, the first one containing either a number or a text, the other three only text. I'm trying to filter this table with the help of a RowFilter:
sorter = new ...
2
votes
1answer
55 views
Select specific table model element on a filtered JTable
On a JTable, I can select a specific row by using table.setRowSelectionInterval(rowIndex, rowIndex).
Now what I would like to do is the following:
I open the frame containing the JTable and pass a ...
2
votes
2answers
297 views
Querying inside a Dataset C#
I have an ADO.NET dataset which is set by a certain query.
say
SELECT ID,USER,PRODUCT,COUNT FROM PRODUCTION
without using a where clause I need to derive some results from the dataset. Say I want ...
2
votes
1answer
125 views
Easy way to escape regex character classes in an arbitrary String?
RowFilter.regexFilter seems like a an easy way to filter my JTable.
I'd like to let people type in filters in a GUI that are straight-up text (i.e. not regex expressions) and then filter based on ...
2
votes
2answers
419 views
How to filter a dataview
I have a dataview that contains a list of tables. I am reading in a list of values that I then want to apply as a filter to this dataview. The list of values is actually in the form of "table1, ...
2
votes
1answer
992 views
Injection Attacks against .NET DataView RowFilter
So I'm writing a handler that filters a cached DataTable based on the AppRelativeCurrentExecutionFilePath using the DataView RowFilter property. What's the best way to encode the input to prevent an ...
1
vote
2answers
158 views
Filter JTable based on a jtextfield NON Case Sensitive (Java)
I already can filter the JTable using a JTextField, the problem is that is case sensitive. For example, I got this name in the Jtable: "Guillian Fox", if I write "guillian fox or "GUILLIAN FOX" in the ...
1
vote
2answers
118 views
RowFilter.NumberFilter: can't handle “mixed” concrete number types
Happens if at least one of the values (values == value in RowFilter, value in entry) is a decimal. Here's a failing test:
@Test
public void testRowFilterNumberMixCore() {
TestEntry entry = new ...
1
vote
2answers
100 views
Multiple cell renderers for a column in a JTable?
Let's say I have the following JTable, which is displayed as soon as a button is pressed:
| Name
------+------------
True | Hello World
False | Foo Bar
True | Foo
False | Bar
I want to ...
1
vote
1answer
245 views
How do you use DataView's RowFilter using keyword 'IN' to filter collection
I would like to filter a collection populated in a DataView. The control I am using for this is a multi-select checkbox Combobox. The string returned from this is 'val1, val2, val3'. I then pass this ...
1
vote
3answers
167 views
Use JTable rowFilter for highliting rows
I am currenlty using the JTable rowFilter for filtering my rows. The filter hide lines which does not follow the configured pattern.
I wish to know if it's possible to use the rowFilter for changing ...
1
vote
0answers
190 views
JTable RowFilter with Bitwise Operation
i am working on a software with many filter criteria on a JTable. I am working with many regexFilters and it works fine, BUT:
On one column i want to make a Bitwise AND Operation between Input-Value ...
1
vote
1answer
320 views
How to use RowFilter.dateFilter on JTable if it contains Strings
I want to use a RowFilter.dateFilter on a JTable, but my Table has only Strings formatted like this "yyyy-MM-dd". If it's not possible to filter my JTable through a dateFilter, how can I solve this ...
1
vote
0answers
923 views
Updating a JTable after using RowFilter
I was able to attach a filter to the GraphTable (which is extended from the JTable). I was trying out a sample filter which filters all the rows starting with the letter "A".
final ...
1
vote
2answers
214 views
DataTable Filtering
I have a method that gets a list of numbers and filters my datatable according to it.
I use this code:
string MyQuery = CreateQueryMethod(MyNumbersList);
MyDataTable.DefaultView.RowFilter = MyQuery;
...
1
vote
3answers
904 views
Compare dates in DataView.RowFilter?
I am scratching my head over something rather stupid yet apparently difficult.
DataView dvFormula = dsFormula.Tables[0].DefaultView;
dvFormula.RowFilter = "'" + startDate.ToString("yyyyMMdd") + "' ...
1
vote
2answers
3k views
RowFilter.regexFilter multiple columns
I am currently using the following to filter my JTable
RowFilter.regexFilter(
Pattern.compile(textField.getText(),
Pattern.CASE_INSENSITIVE).toString(), columns );
How do I ...
1
vote
3answers
2k views
Filtering by date with DataTable.RowFilter while ignoring time
How do I filter for records on a DataTable which are on a certain date?
I've tried plain [datecol] = #11 March 2010# and CONVERT([datecol],'System.DateTime') = #11 March 2010#. With no luck.
MSDN: ...
0
votes
2answers
26 views
Very big JTable, RowFilter and extra load
I wanted to ask for a clarification about the use of RowFilter and its effects on performances.
I implemented a filter through the method include(Entry) that for every row simply checks if its ...
0
votes
0answers
8 views
Concatenating RowFilter orFilters with andFilter in Java
All the questions pertaining this don't seem to answer the particular question I have.
My problem is this. I have a list of search terms, and for each term I find the edit distance to find possible ...
0
votes
0answers
41 views
DataView.RowFilter not working
During Debug in the Immediate Window...
dView.Table.Rows.Count = 14 (what it wrongly comes out to)
dView.Count = 11 (what it is supposed to be with the filter)
It is almost like the RowFilter is ...
0
votes
1answer
166 views
How do I use RowFilter to to find the length of the longest string in a column?
This table only exists in memory, so can't do a quick SQL query.
I need to find the longest string in a column of a datatable.
Due to the size of the tables processed I can not just do a raw ...
0
votes
1answer
297 views
C# DataGridView Filter works but after using the Filter the selected row doesn't return the right data
I've taken over somebody's program. So this is my first time dealing with DataViewGrid.
The data populates perfectly. When the user select a row it populates a text box in the form. Which I'm not ...
0
votes
0answers
60 views
Whole word search using DataView.RowFilter
I've been looking for a week now to find how to simply search for whole words using DataView.RowFilter. No luck (or I wouldn't be making this post). Surely it should be simple!
I have a Keywords ...
0
votes
1answer
317 views
Hide UltragridRow that has no visible child rows after applying RowFilter
So, I am setting the DataSource of my BindingSource to the DefaultViewManager of a DataSet that has a DataRelation. I then set my BindingSource as the UltraGrid's DataSource before applying a ...
0
votes
1answer
241 views
How to get data after DataView filtering?
I apply a filter to Dataview and after that I need to get the filtered data.
before filtering I did:
dvUnloadOpenAccounts.RowFilter = "uso_id = '30640'";
foreach (DataRow row in ...
0
votes
2answers
339 views
A faster Search Algorithm in a JTable
I'm trying to implement my own JTable RowFilter, since I'm using Java 1.4 (RowFilter doesn't seem to exist in this version). I still believe however that the algorithm that I'm using can be replaced ...
0
votes
1answer
239 views
TableRowSorter and RowFilter in java 1.4
I'm actually in a middle of a small problem. I have discovered that TableRowSorter and RowFilter are not included in Java 4. All of our clients are using Java 1.4.2_08 and it's not convenient for us ...
0
votes
3answers
311 views
Trim function not removing spaces in name
bool Res = false;
DataView DV = new DataView(DT);
DV.RowFilter = "Trim(Originator)='"+OrginatorName.Trim()+"'";
if (DV.Count > 0)
{
Res = true;
}
I need to get ...
0
votes
2answers
585 views
Filter records based on Time using Dataview Rowfilter
Is it possible to get records between a Timespan from a DataTable using the RowFilter property of the Defaultview that belongs to the table.
Purpose:
I would like to check if Current ...
0
votes
1answer
107 views
How do I Access separate pages of DataTable rows
I have a DataTable with a large resultset.
This DataTable is used to generate multiple pages in a PDF (one for each row in the DataTable).
After a certain number of rows, the PDF generation takes too ...
0
votes
1answer
648 views
Java Swing: Combine RowFilter.andFilter with RowFilter.orFilter
I couldn't quite get this to work, and the examples I found only worked with a single RowFilter.andFilter or a RowFilter.orFilter. Is there a way to combine two to get something like (A || B) ...
0
votes
1answer
291 views
DataView rowfilter with 2 levels of parents
How can I create DataView rowfilter with two levels of parent relations?
Within one level, I can do something like: "Parent(NameOfTheRelation).id_Something = " + 17
However, with 2 levels I don't ...
0
votes
1answer
270 views
How can I filter a DataColumn on a TimeSpan value?
Programming in C#.NET. I have a DataTable with a column named Time which is of type System.TimeSpan. When I display the DataTable in a DataGridView I want to filter out all the entries that don't have ...
0
votes
2answers
512 views
DataView.Filter not working with multiple % in “like %”?
Below SQL query works when the spaces in the role name are replaced by %: 1 row is returned
select * from cmrdata.dbo.tblRoles where rolename like '%Super%Administrator%'
However, when I try to ...
0
votes
1answer
850 views
How to filter rows in JTable based on boolean valued columns?
Im trying to filter rows based on a column say c1 that contains boolean values. I want to show only rows that have 'true' in c1.
I looked up the examples in ...
0
votes
1answer
254 views
RowFilter including [ character in search string
I fill a DataSet and allow the user to enter a search string. Instead of hitting the database again, I set the RowFilter to display the selected data. When the user enters a square bracket ( "[" ) I ...
0
votes
1answer
837 views
Why is my datagridview.rowfilter not working. I keep getting a syntax error message
My application has a populated datatable and binds it to a ddatagridview by setting the datasource property.
At run time I want to filter this table. When the user clicks a button I run the following ...
0
votes
1answer
689 views
DataView.RowFilter an ISO8601
I have a DataTable (instance named: TimeTable) whose DefaultView (instance named: TimeTableView) I am trying to use to filter based on a date. Column clock_in contains an ISO8601 formatted string. I ...
0
votes
1answer
320 views
Difference between ADO.NET 1.0 and 3.5 using RowFilter and strings?
I have recently been tasked with upgrading an application from .net 1.1 to 3.5 and came across a RowFilter on a DataView that had a different behavior between the two versions.
Here is my code block ...
0
votes
1answer
212 views
Why doesn't COALESCE work with RowFilter?
I'm developing a small application in WPF. I have a ListBox named NameListBox whose ItemsSource property is set to a DataView, and thus displays a list of customer names. The name is composed of 3 ...
0
votes
2answers
907 views
JTable RowFilter
Is is possible to some how get the index of the selection corresponding to the non filtered table?
After the table is filter using a regexFilter. JTable getSelectedRow returns the index of the ...
-1
votes
1answer
49 views
I would like filter DataGridView by DataView
I tried the code below, but it does not work. What's wrong?
private void textBox1_TextChanged(object sender, EventArgs e)
{
// DataView component
DataView view = new DataView();
...