Adaxes Web Interface Help | Show AllHide All |
In the Adaxes Web Interface, the maximum number of child elements displayed in the Browse dialog and the maximum number of Business Unit or AD group members displayed in any grid is restricted. However, you can configure this restriction and set it to the number you need In the Web.config file of your Web Interface. By default, the Web.config file is located in C:\Program Files\Softerra\Adaxes 3\Web Interface\<Web Interface type>.
To configure the maximum number of child elements in the Browse dialog:
In the Web.config file of your Web Interface, add the browseTreeViewsizeLimit attribute to the XML element softerra.adaxes -> web ui -> manageActiveDirectorySettings -> browseActiveDirectorySettings. In the example below, the maximum number of child elements in the Browse dialog is set to 500.
<!-- Adaxes settings --> <softerra.adaxes> <web.ui> <manageActiveDirectorySettings> <browseActiveDirectorySettings ... browseTreeViewSizeLimit="500"> ... <manageActiveDirectorySettings> </web.ui> </softerra.adaxes>
To configure the maximum number of Business Unit or AD group members displayed in a grid, when browsing this BU or group:
In the Web.config file of your Web Interface, add the sizeLimit attribute to the XML element softerra.adaxes -> web ui -> directoryGridView. In the example below, the maximum number of Business Unit or AD group members displayed in a grid is set to 1000.
<!-- Adaxes settings --> <softerra.adaxes> <web.ui> <directoryGridView possiblePageSizes="10,15,20,50,100" sizeLimit="1000"> ... </directoryGridView> </web.ui> </softerra.adaxes>