I have a problem with a custom dialog puzzling me. I hope, somebody here can give me a hint. The dialog refuses to show the submit button and cancel link.
I open the dialog with the following code as part of a grid editor:
$scope.openSymbolDialog = function () {
dialogService.open( {
template: "/app_plugins/ff-grideditors/ff-symbol-dialog.html",
callback: function ( data ) {
console.log("Im Callback: " + data);
},
dialogData: { size: $scope.control.value.size }
} );
}
This code works well and opens the dialog. The dialog is as follows:
The part starting with <div class="umb-panel-footer"> doesn't appear in the DOM of the page. I made sure that the cache is not used, so everything is loaded from the server (Http 200).
It seems as if AngularJs removes this part of the DOM, but I have no glue about, why.
dialogService - submit button doesn't appear
Hi all,
I have a problem with a custom dialog puzzling me. I hope, somebody here can give me a hint. The dialog refuses to show the submit button and cancel link.
I open the dialog with the following code as part of a grid editor:
This code works well and opens the dialog. The dialog is as follows:
The implementation follows the sample found here. The according controller is very simple:
The part starting with <div class="umb-panel-footer"> doesn't appear in the DOM of the page. I made sure that the cache is not used, so everything is loaded from the server (Http 200).
It seems as if AngularJs removes this part of the DOM, but I have no glue about, why.
Any hint would be very much appreciated.
Mirko
I found the error. The closing tag of the select was missing. Just for the records the code of the dialog as it works now:
Mirko
is working on a reply...