Quantcast
Channel: Microsoft Dynamics Ax
Viewing all articles
Browse latest Browse all 181

Show/Hide the dialog range field

$
0
0
To hide/show the query dialog field, you need to implement/override the showIndexFields() method of the dialog and return FALSE if you want to hide the field from the dialog query range.


here is an example:

public boolean showIndexFields(tableId _tableId)

boolean ret = true; 
  
switch (_tableId)

case tableNum(YourTable): 
ret = false; 
break; 


return ret; 
}

Viewing all articles
Browse latest Browse all 181

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>