This is because sort on fields function doesn't work. In fact it doesn't work
for all fields that is not _classic_write (means store in the table of the object).
So there is two options:
- Send to the client the field that can be sorted and disable the sort on those
that can not.
- Don't raise an exception when trying to sort on field that can not.
What do you think?
Le Wed, 04 Jun 2008 23:38:02 +0200,
Cédric Krier <issue_tracker@tryton.org> a écrit :
>
> Cédric Krier <cedric.krier@b2ck.com> added the comment:
>
> This is because sort on fields function doesn't work. In fact it doesn't work
> for all fields that is not _classic_write (means store in the table of the
> object). So there is two options:
> - Send to the client the field that can be sorted and disable the sort on
> those that can not.
> - Don't raise an exception when trying to sort on field that can not.
> What do you think?
Imho option two will mislead the user, because iirc when one clic on the column
name, the query is re-run on the db (and possibly fetch items that were not on
the screen). Maybe the clever solution is to provide the sorting mechanism if
the client know that all the list has been fetch (20000 items by default) and
do nothing if not.
If there is too much records on the list, it can become very expensive.
Because the client needs to read all the records.
I think we can add an new attributes to the fields that are not sortable, to
force the search function to use it.
Example:
For ir.ui.menu complete_name, we can add the attributes that it must use the
name field of the table to sort.