Guest User

Untitled

a guest
Aug 5th, 2015
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. def OnFilterMeter(self,event):
  2. list = self.exception_panel.col_list ## The lenght of my column list
  3. col = list[len(list)-1] ## I want to search the last column
  4. meter_flt = Filter.TextSearch(self.exception_panel,columns = (col), text = "10") ## Create filter to find string 10 in last column
  5. self.exception_panel.SetFilter(meter_flt)
  6. self.exception_panel.populate()
Advertisement
Add Comment
Please, Sign In to add comment