לוגו אתר Fresh          
 
 
  אפשרות תפריט  ראשי     אפשרות תפריט  צ'אט     אפשרות תפריט  מבזקים     אפשרות תפריט  צור קשר     חץ שמאלה ‎print ‎"Hello World!"; if‎ ‎not rules.‎know ‎then rules.‎read(); חץ ימינה  

לך אחורה   לובי הפורומים > מחשבים > תכנות ובניית אתרים
שמור לעצמך קישור לדף זה באתרי שמירת קישורים חברתיים
תגובה
 
כלי אשכול חפש באשכול זה



  #1  
ישן 10-07-2011, 23:55
  משתמש זכר tsachibenezra tsachibenezra אינו מחובר  
 
חבר מתאריך: 06.06.07
הודעות: 749
tinymce מוריד את כל התכונות של האלמנט

מה המצב

יש לי בעיה עם ה TINYMCE של המערכת שלי

כשאני עורך את הטקסט אני רואה את השינויים

ברגע שני שומר האני מקבל POST אבל כל התכונות שהכנסתי לאלמנטים כמו צבע וכו
נעלמים

זה הקוד שטוען את ה TINY

תודה

קוד PHP:
 $(document).ready(function(){
    var 
base_url = $('#siteState').find('input[name=baseUrl]:hidden').val();
    $(
'textarea.ltr_content').tinymce({
        
script_url base_url+'js_files/tinymce/jscripts/tiny_mce/tiny_mce.js',
        
theme "advanced",
        
        
directionality "ltr",
        
theme_advanced_toolbar_align "left",
        
plugins "searchreplace, preview, table, advhr, directionality, template, fullscreen, paste",
        
force_br_newlines false,
        
force_p_newlines false,
        
convert_urls false,
        
relative_urls false,

        
content_css base_url+'css_files/general/cssHelper.css',
        
font_size_classes "fontSize1,fontSize2,fontSize3,fontSize4,fontSize5,  fontSize6,fontSize7",
        
convert_fonts_to_spans true,
        
inline_styles true,

        
extended_valid_elements "div[align<center?justify?left?right|class|dir<ltr?rtl|id|lang|onclick"
                                      
+"|ondblclick|onkeydown|onkeypress|onkeyup|onmousedo  wn|onmousemove"
                                      
+"|onmouseout|onmouseover|onmouseup|style|title]"
                                      
+"span[align<center?justify?left?right|class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown"
                                      
+"|onkeypress|onkeyup|onmousedown|onmousemove|onmous  eout|onmouseover"
                                      
+"|onmouseup|style|title],"
                                      
+"table[align<center?left?right|bgcolor|border|cellpadding|cells  pacing|class"
                                      
+"|dir<ltr?rtl|frame|height|id|lang|onclick|ondblclick|on  keydown|onkeypress"
                                      
+"|onkeyup|onmousedown|onmousemove|onmouseout|onmous  eover|onmouseup|rules"
                                      
+"|style|summary|title|width]",
                                      
        
theme_advanced_buttons1 "newdocument,|,bold,italic,underline,strikethrough,  |,justifyleft,justifycenter,justifyright,justifyfu  ll,formatselect,fontselect,fontsizeselect",
        
theme_advanced_buttons2 "pastetext,pasteword,|,search,replace,|,bullist,num  list,|,undo,redo,|,link,unlink,image,cleanup,code,  |,forecolor,backcolor,|,ltr,rtl,|,preview",
        
theme_advanced_buttons3 "tablecontrols,|,hr,advhr,removeformat,|,sub,sup,|,  charmap,emotions,iespell,media,|,fullscreen,templa  te",
        
theme_advanced_toolbar_location "top",
        
theme_advanced_toolbar_align "left",
        
theme_advanced_statusbar_location "bottom",
        
theme_advanced_resizing true,
        
        
height "300",
        
width "100%"
    
});
    $(
"textarea.rtl_content").tinymce({
        
script_url base_url+'js_files/tinymce/jscripts/tiny_mce/tiny_mce.js',
        
theme "advanced",
        
        
directionality "rtl",
        
theme_advanced_toolbar_align "left",
        
plugins "searchreplace, preview, table, advhr, directionality, template, fullscreen, paste",
        
force_br_newlines false,
        
force_p_newlines false,
        
convert_urls false,
        
relative_urls false,
        
        
content_css base_url+'css_files/general/cssHelper.css',
        
font_size_classes "fontSize1,fontSize2,fontSize3,fontSize4,fontSize5,  fontSize6,fontSize7",
        
convert_fonts_to_spans true,
        
inline_styles true,
        
        
extended_valid_elements "div[align<center?justify?left?right|class|dir<ltr?rtl|id|lang|onclick"
                                      
+"|ondblclick|onkeydown|onkeypress|onkeyup|onmousedo  wn|onmousemove"
                                      
+"|onmouseout|onmouseover|onmouseup|style|title]"
                                      
+"span[align<center?justify?left?right|class|dir<ltr?rtl|id|lang|onclick|ondblclick|onkeydown"
                                      
+"|onkeypress|onkeyup|onmousedown|onmousemove|onmous  eout|onmouseover"
                                      
+"|onmouseup|style|title],"
                                      
+"table[align<center?left?right|bgcolor|border|cellpadding|cells  pacing|class"
                                      
+"|dir<ltr?rtl|frame|height|id|lang|onclick|ondblclick|on  keydown|onkeypress"
                                      
+"|onkeyup|onmousedown|onmousemove|onmouseout|onmous  eover|onmouseup|rules"
                                      
+"|style|summary|title|width]",
        
        
theme_advanced_buttons1 "newdocument,|,bold,italic,underline,strikethrough,  |,justifyleft,justifycenter,justifyright,justifyfu  ll,formatselect,fontselect,fontsizeselect",
        
theme_advanced_buttons2 "pastetext,pasteword,|,search,replace,|,bullist,num  list,|,undo,redo,|,link,unlink,image,cleanup,code,  |,forecolor,backcolor,|,ltr,rtl,|,preview",
        
theme_advanced_buttons3 "tablecontrols,|,hr,advhr,removeformat,|,sub,sup,|,  charmap,emotions,iespell,media,|,fullscreen,templa  te",
        
theme_advanced_toolbar_location "top",
        
theme_advanced_toolbar_align "left",
        
theme_advanced_statusbar_location "bottom",
        
theme_advanced_resizing true,
        
        
height "300",    
        
width "100%"
    
});
}); 
תגובה ללא ציטוט תגובה עם ציטוט חזרה לפורום
תגובה

כלי אשכול חפש באשכול זה
חפש באשכול זה:

חיפוש מתקדם
מצבי תצוגה דרג אשכול זה
דרג אשכול זה:

מזער את תיבת המידע אפשרויות משלוח הודעות
אתה לא יכול לפתוח אשכולות חדשים
אתה לא יכול להגיב לאשכולות
אתה לא יכול לצרף קבצים
אתה לא יכול לערוך את ההודעות שלך

קוד vB פעיל
קוד [IMG] פעיל
קוד HTML כבוי
מעבר לפורום



כל הזמנים המוצגים בדף זה הם לפי איזור זמן GMT +2. השעה כעת היא 13:54

הדף נוצר ב 0.11 שניות עם 10 שאילתות

הפורום מבוסס על vBulletin, גירסא 3.0.6
כל הזכויות לתוכנת הפורומים שמורות © 2024 - 2000 לחברת Jelsoft Enterprises.
כל הזכויות שמורות ל Fresh.co.il ©

צור קשר | תקנון האתר