Guest User

Untitled

a guest
Jul 21st, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. <span>
  2. <input type="text" #anchor />
  3. <button type="button" click="toggleView()"><i class="fa fa-cog fa-2x"></i>
  4. </button>
  5. </span>
  6. <kendo-popup [anchor]="anchor"><!-- Some Content --></kendo-popup>
  7.  
  8. <div click="openDialog()"></div>
  9. <div>
  10. <kendo-dialog *ngIf="showDialog">
  11. <comp-1></comp-1>
  12. </kendo-dialog>
  13. </div>
  14.  
  15. <span>
  16. <input type="text" #anchor />
  17. <button type="button" click="toggleView()"><i class="fa fa-cog fa-2x"></i>
  18. </button>
  19. <kendo-popup [anchor]="anchor"><!-- Some Content --></kendo-popup>
  20. </span>
  21.  
  22. <div click="openDialog()"></div>
  23. <div>
  24. <kendo-dialog *ngIf="showDialog">
  25. <comp-1></comp-1>
  26. </kendo-dialog>
  27. </div>
  28.  
  29. <div>
  30. <target-tag #anchor></target-tag>
  31. </div>
  32. <div>
  33. <kendo-popup [anchor]="anchor">
  34. <Content to display>
  35. </kendo-popup>
  36. </div>
  37.  
  38. <input #anchor style="width: 100px"/>
  39. <button kendoButton (click)="toggle()">Toggle</button>
  40. <kendo-popup *ngIf="popupOpen" [anchor]="anchor" style="width: 100px">
  41. <ul>
  42. <li>Item 1</li>
  43. <li>Item 2</li>
  44. <li>Item 3</li>
  45. </ul>
  46. </kendo-popup>
  47.  
  48. <div id="popupdiv"></div>
  49.  
  50. $("#popupdiv").kendoWindow({
  51. title: "Inforamtion",
  52. resizeable: true,
  53. scrollable: false,
  54. width: "50%",
  55. actions: ["Pin", "Close"],//["Pin", "Refresh", "Maximize", "Close"],
  56. modal: true,
  57. // pinned: true,
  58. animation: {
  59. close: {
  60. effects: "fade:out"
  61. },
  62. }
  63. });
Add Comment
Please, Sign In to add comment