Consultor Eletrônico



Kbase P17289: Dynamics WEB: How can we limit the number of fields displayed in a StandardFilter and Find in Dynami
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   13/08/2004
Status: Unverified

GOAL:

How can the number of fields displayed in a StandardFilter and Find in Dynamics WEB be limited?

GOAL:

How to control which field display on a StandardFilter and Find ?

FACT(s) (Environment):

Dynamics 2.0A

FIX:

Enhancement Request# 20030110-031 has been logged. This Enhancement has not been implemented in the product, but there is a workaround:

The following will fetch a specific batch of data, it can utilize an input field for search criteria and program a search button.

document.all('wdoname._filter').value = "custnum > 50| custnum < 70"; //
Set the filter criteria

document.all('wdoname._sorting').value = "by custnum"; //
Set sort criteria

apph.action('server.wdoname.filter'); //
Set filter action

apph.action('wbo.submit'); //
Submit the request