Tagged Questions
The designmode tag has no wiki summary.
6
votes
5answers
6k views
Firefox - designMode: disable image resizing handles
How can I prevent the user from being able to resize an image in designMode? (disable the handles when image is clicked)
4
votes
18answers
1k views
How often do ASP.NET developers NOT use Visual Studio design mode?
We are developing an ASP.NET application. We retained an outside UI design firm, and for the most part have been very pleased with their work. Their "deliverable" to us was clickable screens -- ...
3
votes
0answers
47 views
How implement escape key on user control child controls at design-time, so that focus moves to respective parent control?
When one works in WinForms designer, you can click on a child control to select it. When you then hit the Esc key, the selection moves up to the parent control. If you press Esc key again, the next ...
3
votes
3answers
2k views
Removing resize handlers on contentEditable div
I created a contentEditable div to use as a rich textarea. It has resize handlers around it that I'd like to get rid of. Any idea how I'd do this?
Edit: This appears to be happening because I am ...
2
votes
0answers
69 views
Visual Studio blocked on design mode after extending a user control
I have a project in Visual Studio 2010 (converted from 2008), and I have created a User control, like this:
namespace Common.Controls
{
public partial class Panel_BaseMap : UserControl
{
...
2
votes
2answers
94 views
What's the best method for creating a simple Rich-Text WYSIWYG editor?
I need to create a simple rich-text editor that saves its contents to an XML file using arbitrary markup to indicate special text styles (e.g: [b]...[/b] for bold and [i]...[/i] for italic). All the ...
2
votes
1answer
130 views
Simplest way to edit a collection in DesignMode?
What is the easiest way to edit and persist a collection like decimal[] or List<string> in the WinForms designer?
The first problem is that a parameterless constructor is needed. So I made a ...
2
votes
3answers
355 views
How to set a value to display for bound properties in WPF design mode?
My bound contents are showed as empty string in the UI design-mode. I want to display some faked value for those contents but I don't know how to.
Please share if you know how to. Thank you!
2
votes
2answers
501 views
Alternatives to execCommand
I'm looking to create a WYSIWYG editor, using jQuery as a framework from which I can use different methods to ease production.
I do actually have a working editor at the moment, and it's working ...
2
votes
1answer
481 views
How to alternate moveStart in Firefox?
Does anybody know how to use range.setStart in the same way as range.moveStart works in IE? I'd like to implement backspace/delete in JS, something like this:
range.moveStart('character',-1);
...
2
votes
2answers
300 views
Any WYSIWYGs that use contentEditable rather than an iframe?
I am looking for a list of WYSIWYG editors that use contentEditable rather than a designMode iframe.
The reason I want this is that I want to have a few regions (divs) on my site that users can edit, ...
2
votes
4answers
573 views
C# typed <T> usercontrol in design mode gives error
I've got a custom class, which derives from UserControl.
The code:
public partial class Gallery<T> : UserControl where T : class, IElement, new()
This classworks like it's supposed to work. ...
2
votes
1answer
977 views
iPhone designmode support
Anyone knows if Safari on the iPhone and iPod touch supports iFrame in design mode and if so, how I can enable it? I have tried following ways, but none work (but it works on my PC):
...
2
votes
4answers
1k views
firefox/IE designMode reference needed
I am looking for reference documentation for designMode in Firefox 2/3 and IE 6/7/8. Does anyone have links to good references?
1
vote
1answer
36 views
Possible issues using DesignerProperties.GetIsInDesignMode(…)?
I'm creating a WPF custom control and ran into a situation. A lot of the code does not execute until the control is initialized: if (this.IsInitialized) { ... } However, this is causing an issue with ...
1
vote
1answer
175 views
Automatic scrolling when contentEditable/designMode in a UIWebView
I am attempting a rich-text editor (with HTML export capability) for an iPhone application I am working on, and decided to use iOS5's WebKit support for contentEditable/designMode.
I have hit a wall ...
1
vote
2answers
138 views
Set focus on iframe in Chrome
I have an iframe (id: 'chat') with designMode='on' in Chrome.
On Enter keypress event I call the function send(), which takes the iframe contents and writes it to a socket. My problem is that when ...
1
vote
1answer
133 views
Force browser to insert <p> tag when pressing Enter in a designMode IFrame
How can I make the browser insert <p> tags instead of <br> tags when I press enter in a designMode IFrame? I get inconsistent behavior across Firefox, Chrome and IE and was wondering if ...
1
vote
3answers
109 views
Make changes not tied to a state in design mode in flash builder 4
If I have a component that has some states defined, is there a way to make changes in design mode but not have it tied to a particular state? For example, if I have state1 and state2, any changes in ...
1
vote
1answer
633 views
Combining designMode on/off bookmarklets into one toggling bookmarklet
I'm looking to combine these 2 bookmarklets into 1 bookmarklet that toggles the designMode on and off:
On: javascript:document.body.contentEditable='true';%20document.designMode='on';%20void%200
...
1
vote
1answer
82 views
How to display localized text in a given language instead of the default one (when in design-mode)?
Currently I use .resx files to localize my application. The application forms' UI in design mode is displayed using the default culture (i.e. the en-US on my PC).
I want to change that culture to be ...
1
vote
1answer
420 views
Debug control crash in visual studio designer
I've got a control that crashes on the form designer when I build the application, and am trying to figure out how to debug the problem.
I thought all I needed to do to be able to get in with a ...
1
vote
2answers
2k views
WPF: How can I create sample data in design mode?
I would like to create sample data which are created only in design mode (When the WPF Window is shown in the Visual Studio WPF Designer or in Expression Blend). I tried this:
public MainWindow()
{
...
1
vote
1answer
187 views
Can i execute custom commands in a rich text editor (iframe with design mode on)?
See this.
Is it possible to create custom commands (and how) for the function execCommands?
I need custom commands for custom markup.
1
vote
3answers
832 views
WinForms - Enable DesignMode
For a OSS project, I'm trying to add controls programmatically to a WinForms view.. and I want to make these editable and resizeable as in the Visual Studio Designer. I've been playing around with ...
1
vote
3answers
1k views
IE designMode Showing display:none Divs
I've done a lot of research on this,but I'm unable to solve this problem. I've got a Div with several Divs within it that I want to hide before switching on a TinyMCE instance.
I'm doing this via ...
0
votes
1answer
18 views
Set DesignMode for my application
I have application where i can change XAML file. For example: Move and resize controls.
Inside controls we have some complex code and use next check:
DesigerProperties.GetIsInDesignMode(this)
But ...
0
votes
0answers
7 views
How to bold several parts of a string in a iframe set to design mode?
I have a list containing start and end boundaries:
var boundaries = [[3, 6], [7, 18], [43, 44]]
And a string in a iframe with design mode set to on. I want to be able to bold parts of the string, ...
0
votes
1answer
63 views
designMode iFrame Get Cursor Position
I want to get the cursor position of an editable iFrame (using designMode). Here is the code I have so far:
document.getElementById('iframe_id').contentWindow.document.getSelection().getRangeAt(0)
...
0
votes
1answer
47 views
Inserting Text into a Designmode Iframe Triggered By a Button Outside the Iframe
I have an editable iframe and I would like to insert text at the cursor location when the user clicks a button that is outside the iframe. I am trying to use the following code to insert the text:
...
0
votes
1answer
25 views
Property of .net web server control not showing in design mode
I have a Label on a .Net page.
<asp:Label ID="Label5" runat="server"></asp:Label>
The control has the Style-property, but this is not shown if I try to set a property in markup/design ...
0
votes
1answer
25 views
RichText editor button state on insertion point location
I've created a mini browser RichText editor that implements basic stuff like bold, italic, underline, indent among others. Say I have these on my textarea (which is really an iframe):
This is a bold ...
0
votes
0answers
175 views
touchmove event in Safari/iOS5/iPad disables contenteditable - any workaround?
I have a serious problem in Safari on iPad. The new contenteditable features doesn't seem to work with touchmove event!
code:
...
<script>
function doNothing(event) { return; }
function ...
0
votes
1answer
93 views
How to hide iPad keyboard in Safari + designMode=on
iOS5 now supports designMode=On. I set that on a document of an iframe and it works pretty well. Now I want to hide the onscreen keyboard with Javascript after clicking on an image inside that ...
0
votes
1answer
40 views
Embed and object tags not showing with designMode=on
I'm currently using Firefox 7.0.1. I've been working on a WYSIWYG editor and just recently discovered an issue with embedding content in editable documents. I'm not sure if this is a bug, but when a ...
0
votes
1answer
100 views
designMode and custom actions?
So my newest project requires the use of designMode (or similar methods of creating rich text editors), but I am having difficulty using the default commands. I would much rather insert my own HTML at ...
0
votes
0answers
37 views
WYSIWYG editor, determine if moving inside or leaving containers
I'm in the middle of creating a custom richtext/WYSIWYG editor (I know, there are a lot of great alternatives out there, I'm not interested in those), but there are some :P hurdles I'm facing. Here is ...
0
votes
1answer
245 views
App Using WebBrowser.DocumentText And DomDocument.DesignMode Works In IE8 And Does Not Work In IE9
Yes my use of webBrowser control work fine in IE8 and not in IE9. It seems that setting the HTMLDocument from DesignMode = "On" to DesignMode = "Off" removes the document from the WebBrowser. I made ...
0
votes
0answers
72 views
How to use DesignMode to ignore code using external objects?
I am working on a project whereby am using some third party components. So now i have created a control,which is basically a combobox and textbox bound to a datasource that is bound to the 3rd party ...
0
votes
0answers
177 views
Cursor positioning around block-level elements in Firefox designMode
I'm playing around with cursor positioning in designMode documents. I have some "blocks" of content -- basically a <div> -- and I'd like the cursor to be positionable immediately before and ...
0
votes
1answer
333 views
Controls disappear in design mode using visual studio 2005
I'm working in a windows forms project using visual studio 2005 sp1, i've a lot of usercontrol that use for my user interface, yesterday i start to have problem with the designmode, when i open a ...
0
votes
1answer
138 views
Javascript: Disable Style Pasting
I'm building a simple WYSIWYG editor with an iframe with Desig Mode On.
My problem is that when I paste some text in the editor then it brings the style of the text too like font size, font family, ...
0
votes
2answers
301 views
why window.setTimeout is required to set an iframe's designmode “on” in IE
In my experiment, I have seen that even after window.onload event, window.setTimeout is required to make an iframe editable by setting iframe's designmode "ON". And this happens in IE, while in ...
0
votes
1answer
152 views
Is designMode bad?
In a previous post that I posted here, I got responses that contentEditable and designMode are bad practices. So I switched to TinyMCE, but that uses designMode as well... is there something bad about ...
0
votes
2answers
231 views
Can't get value of designMode IFRAME
I can't retrieve the contents of an iframe, when designmode = 'on'. Here is my code:
val = $("#frame").val();
I've tried everything, and nothing works, help?
0
votes
2answers
782 views
HTML designMode, move cursor programmatically using default keypress handlers
Although I already got an answer, I'll start a small bounty on this one. As the answer is that it is impossible, I'm searching for an alternative solution or some other suggestion.
I'm making a very ...
0
votes
2answers
257 views
DIV Contenteditable expand problem
I have a div with contenteditable set to true to act as a text input.
Now usually, it expands as some text reaches the end of the div, but if I resize the div, this stops happening. The browser no ...
0
votes
1answer
269 views
Make specific elements in designMode iframe read-only?
I have an iframe which has designMode set to 'on'. In it, I have a div which the user should be able to type in, and also in the iframe, I have another div which the user should NOT be able to type ...
0
votes
3answers
523 views
Can't switch on designMode in Internet Explorer
The following code works in Firefox 3.6, but not in Internet Explorer 8:
<html>
<head>
<title>Example</title>
<script type="text/javascript">
function init() ...
0
votes
5answers
724 views
Problem using WebBrowser control as editor
I am currently working on a project where I am using a WebBrowser control as an editor. I have design mode turned on and it seems to be working. The issue im having is when I try to save the Document ...