Javascript - TinyMCE Losing Frame In IE8?

Nov 9, 2010

I have a web-site. We are using TinyMCE as our text editor. I just upgraded to the newest version and added the media plugin so our users can add videos to their enteries.The upgrade works great on Chrome, FireFox, IE7. However, it does not work with IE8. The frame around the editor disappears along with the toolbar.

Here is the init code I'm using:

tinyMCE.init({
// General options[code].....

View 1 Replies


Similar Messages:

Javascript - Allow A Self Closing Tag In TinyMCE?

Nov 2, 2010

The source tags inside my video element need to be self closing so the iPad doesn't start whinging.

I type in <source src="myVideo.m4v" />

TinyMCE keeps changing it to <source src="myVideo.m4v" ></source> though.

How can I tell it to stop?

View 1 Replies

Finding Conflict Between Microsoft Ajax And TinyMCE JavaScript

Jan 8, 2010


I have written an asp.net usercontrol with TinyMCE as a text editor for my web application.

This control is being used on webforms. When other control(s) perform a partial page refresh, the control no more remains a texteditor, is converted back to the same old textarea control. When updatepanel is not used, there is no problem.

Is this some kind of conflict between Microsoft Ajax and TinyMCE JavaScript or am I missing something ?

userControlTinyMCE

Code:

[code]....

View 2 Replies

Javascript: Finding Frame On MainPage From The Popups?

Nov 5, 2010

In the following Javascript I have to keep finding the mainFrame from the Popup pages, is there a better way to do this?

function sendRefreshMessage(data) {
var myObj = null;
myObj = document.getElementById('slPlugin');
if (null != myObj) {
try {
//perform operation on myObj
} catch (err) {
}.....

View 1 Replies

Web Forms :: Putting A Frame In Another Frame?

Mar 12, 2010

I have this situation where I have three pages:

The first page, default.htm, is a frameset page that uses the other two pages.

The second page, casemenu.aspx, is a form that contains an object we call "PopupManager": It has an element <xxx:PopupManager runat="server"/>. This object is dependent on the standard ScriptManager, which requires a form.

The third page, header.aspx, contains three links. Each link calls a JScript function that in turn calls a function on the Popup Manager. It makes the call to the popup manager with an expression like 'top.frames.casemenu._PopupManager'.

Now, the problem I have is that I have to change default.htm to be a normal page containing an iframe, which will refer to a new page, container.aspx, which has the original frameset. When I do that, I can no longer access the PopupManager the same way ('top.frames.casemenu._PopupManager' no longer works.)

I would like some way to refer to the PopupManager relative to header.aspx, something like "self.parent.frames.casemenu._PopupManager", but that doesn't work.

View 1 Replies

Javascript - Disabled Radio Button Losing Value After Postback

Feb 14, 2011

I have two radio buttons that are disabled with javascript when the page loads. RadioButton1 is checked by default. When I click the button to do a postback, the RadioButton1 is no longer checked.

Here's my code sample. The code behind is empty.

<asp:RadioButton ID="RadioButton1" runat="server" GroupName="group" Checked="true"/>
<asp:RadioButton ID="RadioButton2" runat="server" GroupName="group" />
<asp:Button ID="Button1" runat="server" Text="Button"></asp:Button>
<script type="text/javascript">
window.onload = function () {
var RadioButton1 = document.getElementById('<%= RadioButton1.ClientID %>');
var RadioButton2 = document.getElementById('<%= RadioButton2.ClientID %>');
RadioButton1.disabled = true;
RadioButton2.disabled = true;
};
</script>

View 4 Replies

Checkbox Losing Value On Postback Due To JavaScript / JQuery Array?

Feb 1, 2011

I have a simple asp:RadioButtonList within a form tag but for some reason it isn't keeping it's value on postback

Here's what I've got

[code]....

View 3 Replies

AJAX :: Losing Javascript Events On Async Postback?

Apr 27, 2010

I am creating a ASP.Net server control to manage locations. The control is a composite control containing several text-boxes, labels, and a link button. I use the AJAX Control Toolkit to provide a modal popup which contains a Bing map. All the Javascript is in its own file and used as an embedded web resource.

The link button is what opens the modal popup. It also needs to call a Javascript function that initializes the Bing map (onclick = "GetMap();"). There are instances when this server control is placed within an Update Panel (and there is no way to avoid this). When in an Update Panel the link button loses its onclick event. I understand that this is because during an async postback the portion of the DOM that defines the content of the Update Panel is thrown out and reinitialized, resulting in the event breaking. When the control is not in an Update Panel everything works as intended.

I have tried registering events on Page.Load and Page.Init, like so:

[Code]....

I have also tried flat out writing the function call to the page:

[Code]....

I have put breakpoints on the lines inside each delegate and they do not get hit. I am not aware of any special way to register events of a composite control's child control or the Page.Load/Page.Init events when being done inside a server control. Is there some special way to register these events? (Note: Both those code blocks above are in my CreateChildControls() method)

Below is the GetMap() Javascript function. As you can see it is pretty straight forward.

[Code]....

View 3 Replies

Javascript - Check Email Id Already Exists In Database When Losing Focus

Mar 18, 2011

I want to check the entered email id already exists in my database or not. For that I need the Text box lost focus event so that I can call it in update panel trigger asynchronously. whereas in my event I can check whether the entered value exists in database or not.

I tried:

txtEmailId.Attributes.Add("onblur", "javascript:CheckEmailIdIsExist()");

If so, the what should be inside CheckEmailIdIsExist() javascript method? how to check database values asynchronously from javascript function?

View 3 Replies

Javascript - Change The URL Of The "parent" Frame?

Dec 5, 2010

I have a website which I host myself. I do not have a static IP address so I have all traffic for my domain forwarded with masking to my DDNS account. The resulting page looks like this...

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>mydomianname.com</title>
</head>
<frameset rows="100%,*" border="0">
<frame src="http://myddns.dyndns.org/mydomainname" frameborder="0" />
<frame frameborder="0" noresize />
</frameset>
</html>

How can I update the URL of the "parent" frame as users navigate within the "child" frame?

UPDATE: Success?

I have tried doing this with javascript but had an issue getting the correct href to my javascript function with out having adverse side effects (having two windows open up, having my main window go to the wrong location, or making it so the back button didn't work right). All I needed was an attribute of my a tag to hold a value that I could use in my javascript, but would do nothing else at all. Adding the attributed value event though it is not a native attribute to the a tag works great.

The a tag...

<a onclick="url_update(this);" value="test/test.html" href="javascript:void(0);">test link</a>

and the javascript function...

function url_update(element){
base_url = 'http://mydomain.com/';
window.parent.location.href = base_url + element.getAttribute('value');
}

the resulting updated URL is...

http://mydomain.com/test/test.html

... and there are none of the previously mentioned side effects.

The only "side effect" that I would like to fix is display of the link in the info bar at the bottom of a browser window. Right now it says javascript:void(0); because that is what is written in my href attribute, but I would like it to show the updated URL when the link is hovered over... any thoughts?

It would be even better if I could scrap all of this javascript and use IIS 7 URL Rewrite 2.0 to do this instead... but I have yet to master the black art of URL rewriting.

View 3 Replies

TinyMCE .NET Dll Could Not Be Found?

Nov 17, 2010

I am trying to include the .Net TinyMCE dll in my project. The code I am using is:

<%@ Register Assembly="Moxiecode.TinyMCE" Namespace="Moxiecode.TinyMCE.Web" tagprefix="tinymce" %>

I have already added the dll to the references in the project and I checked the code in my csproj to make sure it is correct. I modified it to make sure it had a path hint.

<Reference Include="Moxiecode.TinyMCE, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>binMoxiecode.TinyMCE.dll</HintPath>

[code]...

View 1 Replies

C# - How To Keep TinyMCE After Postback In An UpdatePanel

Aug 17, 2010

When I click a button that causes a postback on the UpdatePanel it calls the tinyMCE.triggerSave().

It reloads the panel and the editor show up again, but when I try to call tinyMCE.triggerSave() the second time I get the following error:

g.win.document is null

I though it was getting the old instance, but I'm also removing the control (tinyMCE.execCommand('mceRemoveControl',false,'Editor');) after I call the save. Even so it still crashes the second time.

View 1 Replies

C# - Get TinyMCE Instance By Class?

Jan 24, 2011

I have a form with multiple TinyMCE instance. I created the TextArea controls dynamically using a Repeater control - They all have the same ID,but I gave each one a different class. I assigned each of the TextArea controls a TinyMCE instance using the editor_selector : option in the TinyMCE Init function.

tinyMCE.init({ mode : 'textareas',theme : 'simple',editor_selector : 'upperBlock',directionality : 'rtl'}); tinyMCE.init({ mode : 'textareas',theme : 'simple',editor_selector : 'middleBlock',directionality : 'rtl'});

I want to refer to a specific TinyMCE instance in a JS function and get its content. In the case when each TextArea control has a different id that could by done by using :

tinyMCE.get('IdOfYourTextBoxWithTheTinyMCEContent').getContent()


Is there a way to get ref to a specific TinyMCE instance content by the class assigned to it in the editor_selector option of the TinyMCE Init function ?

View 2 Replies

C# - Can't Delete Image File While Using TinyMCE

Feb 7, 2010

i am using TinyMCE AND AsyncFileUpload AND an Update Panel After Uploading , i cannot delete the Images while Adding them to tinymce content because it is being used by another process.

lock (this)
{
if (File.Exists(_FILE_HANDLER_))
{
File.Delete(_FILE_HANDLER_);
}
}

Do i have to Dispose TinyMce :: Like This :

tinyMCE.execCommand('mceFocus', false, '<%= TextBox1.ClientID %>');
tinyMCE.execCommand('mceRemoveControl', false, '<%= TextBox1.ClientID %>');

View 1 Replies

Web Forms :: TinyMCE Editor Is Empty?

Jun 22, 2010

I have tinymce .net control on my .net webform and the basic setup works a treat. My code behind can see the html generated my tinymce via the TextArea1.Value property. However as soon as I set the mode to textareas the value is suddenly always empty! The problem is that if the mode is not set to textareas the tinymce editor is only in simple mode and does not offer all the features.

How do I get this to work?

View 10 Replies

Web Forms :: How To Disable Resize In TinyMCE

May 7, 2015

I used tinymce in my page...

I want users don't allow to resize it so I used below css:

.elm
{ direction:rtl;
resize:none;
text-align:right;
height:180px;
font:bold 18px tahoma;
}

but it doesn't work..

is there other code for this?

View 1 Replies

Web Forms :: Using TinyMCE Html Editor In Web Application With .net 3.5 And C#?

Aug 30, 2010

I am using TinyMCE html editor in my web application with Asp.net 3.5 and C#. If I enter a path like http://video.test.com/test.flv in url attribute to add video in my page content, the leading slash gets stripped, and becomes "http:/video.test.com/test.flv".So that the move could not get loaded. On button click event the slash gets removed. Button click is necessary for me to save the page content into the database.

View 3 Replies

Web Forms :: Adding Templates To TinyMCE Editor

Mar 28, 2012

i have integrated the template into the tiny using the following code

template_templates: [               
{  title: "red", src: "Template/redyellow/Website/about.html"  },
{  title: "Law", src: "Template/Law/index.html" }, 
{  title: "Business", src: "Template/Blue_Business/index.html"   }, 
{  title: "asubtleorange", src: "Template/asubtleorange/index.html" }, 
{  title:" 110100013",  src: "Template/110100013/index.html"  } ]

But I need it with file upload control...  like the image is added with tiny editor using the following code

 if (FileUpload1.HasFile)  {  
string FileName = System.IO.Path.GetFileName(FileUpload1.PostedFile.FileName); 
FilePath = "editor_image/" + FileName;   
FileUpload1.SaveAs(Server.MapPath(FilePath)); 
editor.Text += string.Format("<img src = '{0}' alt = '{1}'/>", FilePath, FileName); 
}

like the above code i need to add the html/style sheet template.

View 1 Replies

Web Forms :: Can't Save Text From TinyMCE TextBox To .txt File

Jul 2, 2010

I have set up a tinyMCE textBox on an emtpy form. I will now save some written text to a .txt file. When I press the button, I receive an error page and the .txt file is not created. However if I dont write anything in the textBox and press the button, then the .txt file is created and the messageBox is shown.

[Code]....

View 2 Replies

Jquery - 4.0 With TinyMCE And XML Encoding Re-encodes Content On Postback?

Jan 20, 2011

i have a ASP.NET 4.0 based CMS, where i use the TinyMCE (3.4) via jQuery to edit one Textbox.In addition to this i have several other textboxes. There is also another DropDown List on the Page, which controls the Contenttype.This Control has AutoPostback enabled and sets the visibility on the textboxes regarding the selectes item.As i want to keep the Postback Validation on i have configured the TinyXML to use xml for the content serialisation (encoding: "xml").Now i have the problem, when a postback from e.g. the DropDown List occures, the re-encodes the content.

Init: "Hallo"
1st Postback: "<p>Hallo</p>"
2nd Postback: "<p><p>Hallo</p></p>"

i have enabled the original textarea via css and this seems to be a problem of the TinyMCS's Save method.
Does anybody have a solution, how to fix this issue maybe with a custom save_callback on the TinyMCE?

View 1 Replies

Forms Data Controls :: TinyMCE Richtext Editor?

Jun 25, 2010

if i can get the script of color picker as like shown in this link?ttp://tinymce.moxiecode.com/examples/example_25.php

View 2 Replies

Controls :: How To Change Font Size Of H1 H2 Tags In TinyMCE

Apr 10, 2014

I use tinyMce in my page ,below is apart of code that define format of text

style_formats: [

{ title: 'bolder', format: 'h1' },
{ title: bold', format: 'h2' },
{ title: 'small', format: 'h3' },
}

I want here instead of H1,H2,H3 I put font size for it I mean like :12px,14px 16px...

View 1 Replies

Controls :: TinyMCE Code Syntax Highlighting Plugin

Jul 14, 2013

which are the existing plugins for add code blocks in TinyMCE?

View 1 Replies

Data Controls :: How To Validate TinyMCE Rich TextBox

May 7, 2015

I used below code instead of ckeditor

<script src="../tinymce/tinymce.min.js" type = "text/javascript"></script>
<script type = "text/javascript">
tinymce.init({
language : 'fa',
directionality : 'rtl',
selector: "textarea#elm1",

[code]...

here I used validation for textbox that if users don't enter text it show error..now here problem is that when I enter text for firsttime it show validation error  I should enter text again that it doesn't show error and insert data into database.what should I do that it doesn't show validation error when I enter text for first time it doesn't show error?

View 1 Replies

Controls :: Remove Image From TinyMCE And Delete It From Folder

Mar 5, 2013

just like the upload method with TinyMCE editor is there is any image remove method so that i can remove image through image button

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved