Kbase P65868: How can I turn off sorting in a Dynamics DynBrows on a per C
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  04/02/2004 |
|
Status: Unverified
GOAL:
How can I turn off sorting in a Dynamics DynBrows on a per Column basis?
FACT(s) (Environment):
Dynamics
FIX:
Create a Superprocedure for this browser and override SetSort to return false if the column you don't want to sort on is selected. The code might look something like this:
IF pcColumnName = "name" then
RETURN FALSE.
ELSE
RETURN SUPER(INPUT pcColumnName).