I need to come up with a solution for searching a text in a column. What I
have now is clearly showing that the following function in the item
renderer:
private function onTextSearchEvent(event:ApplicantformTextSearchEvent):void
{
var _startingPosition:int = Question.text.search(event.textToSearch);
trace(_startingPosition);
if (_startingPosition != -1)
{
Question.selectRange(_startingPosition, _startingPosition +
event.textToSearch.length);
}
}

does not print dataPrvider.length times as what I would want. But how can I
show a number of text instances being found if it does not go thru every
row in the datagrid?

Reply via email to