Whenever i try to add footer in dialog box using angularjs
as soon as dialog box opens the footer is shown but when i resize it the footer should come with resizing but it goes down as shown
the code is like this
$("#basicDialog").ejDialog({
width: 600,
height: 620,
minWidth: 310,
minHeight: 250,
close: "onDialogClose",
// target: ".control",
enableModal: true,
showOnInit: false,
showFooter: true,
footerTemplateId: "sup",
position: { X: 340, Y: 50 },
enableAnimation: true
});
<script id="sup" type="text/x-jsrender">
<table width="100%">
<tr>
<td style="text-align:left;">
<i id="saw" class="tooltip1" ng-class="class1" ng-click="saw()">
<span class="tooltiptext">{{es}}</span>
</i>
</td>
<td align="right">
<input type="button" value="" onclick="abc()" ng-show="abc1" />
<input type="button" class="btn btn-primary" value="xyz" onclick="xyz()" />
</td>
</tr>
</table>
</script>
herre ng-click nor ng-show works
Attachment:
Screenshots_63f3df75.rar