Is it possible to use a wildcard or some kind of "begins with" functionality
when sorting datasets? For example, I have a list of part numbers. If I want to
find the parts beginning with ABC, can I enter only that and see ABC123,
ABC234, ABC456...

My code so far

on(release)
a=part.text
partno=a.toUpperCase()
part.text=partno
prices_ds.filtered = true
prices_ds.filterFunc = function(item:Object)
return(item.Part == partno)



Thanks