Article Details
Id: | 20183 |
Product: | finPOWER Connect |
Type: | NEW |
Version: | 4.00.02 |
Opened: | 13/04/2023 |
Closed: | 13/04/2023 |
Released: | 27/06/2023 |
Job: | J030911 |
HTML Widgets; widget.UI.DocumentManagerComboBox now has Buttons and ButtonsDefine methods
The widget.UI.DocumentManagerComboBox control now exposes the following methods from the underlying ComboBox control:
- Buttons
- ButtonsDefine
This allows buttons to appear to the right of the control, e.g.:
C.cboDocumentFileName = widget.UI.DocumentManagerComboBox("cboDocumentFileName", {
onButtonClick: function (sender, e) { window.alert(e.id); }
});
// Print Button
var buttons = [];
buttons.push({id: "DocumentPrint", icon: "Print"});
C.cboDocumentFileName.ButtonsDefine(buttons);