Jump to content

Recommended Posts

Posted

Merhaba kod aşağıdaki gibi ajaxRequest ne yaptıysam gönderemedim aslında yapmak istediğim ajaxRequest ile tinyMCE.get("edt1").getContent() değerini göndermek fakat nerede hata yapıyorum anlamadım. 

Diğer bir sorum bu  WYSIWYG editörlerinin hepsimi paralı oldu ücresiz yazanlarada bakındım ticari kullanılamıyor ve fiyatlarda baya yüksek geldi kim ne kullanıyor paylaşırsanız sevinirim. aslında tinyMCE  6.8.3 ü son mit lisanslı olan onu kullanmak istedim fakat menuler bir türlü çıkmadı tıklıyorsun altmenüler açılmıyor. 

tinyMCE.init({
  selector: "#edt1",
  height: 300,
  plugins: [
    'advlist autolink lists link image charmap print preview anchor',
    'searchreplace visualblocks code fullscreen',
    'insertdatetime media table contextmenu paste code'
  ],
  toolbar: 'mybutton insertfile undo redo | styleselect fontsizeselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image',
  fontsize_formats: "8px 10px 12px 14px 18px 24px 36px",
  mode: "exact",
  elements : "edt1",
  language : 'tr_TR',
  skin: 'lightgray',
   setup: function(editor) {
        editor.addButton('mybutton', {
            text: 'Kaydet button',
            icon: false,
            onclick: function() {
              alert (tinyMCE.get("edt1").getContent());  
              ajaxRequest('gonderen', 'olay', [], false);
            }
        });
}
  
   
});

 

Posted

Merhaba,

Gerçekten de, birçok popüler WYSIWYG editörü ticari kullanım için ücretli lisans gerektiriyor. Ancak, ticari projelerde kullanılabilecek ücretsiz ve açık kaynak çözümler de mevcut. Örneğin, TinyMCE ve CKEditor, temel işlevselliği olan ücretsiz sürümlere sahip, Quill ve Summernote gibi editörler ise tamamen ücretsiz ve açık kaynaklıdır, bu nedenle ticari amaçlarla kullanılabilirler. Eğer gelişmiş özelliklere ihtiyaç duyulmuyorsa, bunlar iyi bir seçenek olabilir.

Bu arada, birkaç yıl önce TinyMCE'yi (Version: 5.0.0-1) uniGUI'ye bileşen olarak entegre etmeyi başardım.

(It’s true that many popular WYSIWYG editors require a paid license for commercial use. However, there are several free and open-source options that can be used in commercial projects. For example, TinyMCE and CKEditor offer free versions with basic functionality, and editors like Quill and Summernote are completely free and open-source, which allows them to be used for commercial purposes. These can be good options if advanced features are not required.

By the way, a few years ago, I successfully integrated TinyMCE (Version: 5.0.0-1) into uniGUI as a component.)

 

Posted
14 minutes ago, Sherzod said:

Merhaba,

Gerçekten de, birçok popüler WYSIWYG editörü ticari kullanım için ücretli lisans gerektiriyor. Ancak, ticari projelerde kullanılabilecek ücretsiz ve açık kaynak çözümler de mevcut. Örneğin, TinyMCE ve CKEditor, temel işlevselliği olan ücretsiz sürümlere sahip, Quill ve Summernote gibi editörler ise tamamen ücretsiz ve açık kaynaklıdır, bu nedenle ticari amaçlarla kullanılabilirler. Eğer gelişmiş özelliklere ihtiyaç duyulmuyorsa, bunlar iyi bir seçenek olabilir.

Bu arada, birkaç yıl önce TinyMCE'yi (Version: 5.0.0-1) uniGUI'ye bileşen olarak entegre etmeyi başardım.

(It’s true that many popular WYSIWYG editors require a paid license for commercial use. However, there are several free and open-source options that can be used in commercial projects. For example, TinyMCE and CKEditor offer free versions with basic functionality, and editors like Quill and Summernote are completely free and open-source, which allows them to be used for commercial purposes. These can be good options if advanced features are not required.

By the way, a few years ago, I successfully integrated TinyMCE (Version: 5.0.0-1) into uniGUI as a component.)

 

ajaxRequest  hakkında bir fikrin varmı ? çözemedim bir türlü 

Posted
1 hour ago, Sherzod said:

'gonderen', the first parameter, should specify a JavaScript object.

thank you, I missed it
I should stop working at nights now :)

 

            var params=[];
               params = ["HTML="+tinyMCE.get("edt1").getContent()];
              ajaxRequest(MainForm.UniHTMLFrame1, 'KaydetTiklandi', params);
            }

 

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...