sample03.lasso 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. [//lasso
  2. /*
  3. * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  4. * Copyright (C) 2003-2009 Frederico Caldeira Knabben
  5. *
  6. * == BEGIN LICENSE ==
  7. *
  8. * Licensed under the terms of any of the following licenses at your
  9. * choice:
  10. *
  11. * - GNU General Public License Version 2 or later (the "GPL")
  12. * http://www.gnu.org/licenses/gpl.html
  13. *
  14. * - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  15. * http://www.gnu.org/licenses/lgpl.html
  16. *
  17. * - Mozilla Public License Version 1.1 or later (the "MPL")
  18. * http://www.mozilla.org/MPL/MPL-1.1.html
  19. *
  20. * == END LICENSE ==
  21. *
  22. * Sample page.
  23. */
  24. ]
  25. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  26. <html>
  27. <head>
  28. <title>FCKeditor - Sample</title>
  29. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  30. <meta name="robots" content="noindex, nofollow">
  31. <link href="../sample.css" rel="stylesheet" type="text/css" />
  32. <script type="text/javascript">
  33. <!--
  34. function FCKeditor_OnComplete( editorInstance )
  35. {
  36. var oCombo = document.getElementById( 'cmbToolbars' ) ;
  37. oCombo.value = editorInstance.ToolbarSet.Name ;
  38. oCombo.style.visibility = '' ;
  39. }
  40. function ChangeToolbar( toolbarName )
  41. {
  42. window.location.href = window.location.pathname + "?Toolbar=" + toolbarName ;
  43. }
  44. //-->
  45. </script>
  46. </head>
  47. <body>
  48. <h1>FCKeditor - Lasso - Sample 3</h1>
  49. This sample shows how to change the editor toolbar.
  50. <hr>
  51. <table cellpadding="0" cellspacing="0" border="0">
  52. <tr>
  53. <td>
  54. Select the toolbar to load:&nbsp;
  55. </td>
  56. <td>
  57. <select id="cmbToolbars" onchange="ChangeToolbar(this.value);" style="VISIBILITY: hidden">
  58. <option value="Default" selected>Default</option>
  59. <option value="Basic">Basic</option>
  60. </select>
  61. </td>
  62. </tr>
  63. </table>
  64. <br>
  65. <form action="sampleposteddata.lasso" method="post" target="_blank">
  66. [//lasso
  67. include('../../fckeditor.lasso');
  68. var('basepath') = response_filepath->split('_samples')->get(1);
  69. var('myeditor') = fck_editor(
  70. -instancename='FCKeditor1',
  71. -basepath=$basepath,
  72. -initialvalue='<p>This is some <strong>sample text</strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor</a>.</p>'
  73. );
  74. if(action_param('Toolbar'));
  75. $myeditor->toolbarset = action_param('Toolbar');
  76. /if;
  77. $myeditor->create;
  78. ]
  79. <br>
  80. <input type="submit" value="Submit">
  81. </form>
  82. </body>
  83. </html>