aspxgridview header filter multi select from column content

I'm using aspxgridview in my project and i have a language column as seen above. Each row is for a product. First product has 2 languages, second has 4 and 3rd has 3 languages... In product table i record languages in a single cell for each product like ,2,3,4, (these ara language table ids) and i am showing them in the grid like above with language codes and seperating them with dash... I could't able to find multiple select for this issue... I mean i want to search TK and TH language code used products from multi select dropdown..

www.yazilimakademi.com/1.jpg

when i select TK and TH

在这里输入图像描述

no data to display...


By default it is only returning the first item you selected. You will need to write some code to include each item selected as well as the character you use to seperate the values. I found a good example here

链接地址: http://www.djcxy.com/p/31050.html

上一篇: WinForms XtraGrid列过滤器检查列表框实际数据

下一篇: aspxgridview头过滤器可以从列内容中多选择