I have a page that searches with filters. I have this code for example,
xmlTempResultSearch = xmlResidentListDisplay.selectNodes("//PeopleList/Row[@LastName != '"+txtSearch.value+"']");
xmlTempResultSearch.removeAll();
This selects the data that is not equal to the LastName inputted on the txtSearch
textbox and then removes them from the result set so that its filtered to equal the last name on the txtSearch
textbox.
My problem with this code is that it should be equal (=) to the txtSearch
.value, what I want is that I want the result set LIKE the txtSearch.value
. What happens on my page is that when I type 'santos
' on the txtSearch textbox, its result set is all those last names with 'santos
'. But when I type 'sant
', nothing appears. I want the same result set with 'santos
' because it all contains 'sant'
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…