Цитата:
Изначально опубликовано Dron AKA andy
Насколько я знаю, findRecord() позиционирует запись по RecId. Попробуйте включить индекс по RecId в свойствах таблицы.
PHP код:
public void removeFilter()
{
InventTable cursor;
;
cursor.RecId = InventTable.RecId;
super();
this.query().dataSourceNo(1).sortClear();
this.query().dataSourceNo(1).addSortIndex(indexnum(InventTable, RecIdIdx));
this.research();
this.findRecord(cursor);
}
всё равно проходит по всем записям
где я облажался?