vote up 0 vote down star

Im using WMD: The Wysiwym Markdown Editor (I think stackoverflow does as well, and btw, I recommend you to visit that page). I have a single view that is supposed to have two separate editors and two corresponding previews. Is that possible? And if, how?

Currently only one of the preview fields are updated correctly, the second one seems dead.

Code for the form:

<label for="Description">Description</label> <br />
<%= Html.TextArea("Description", new { style = "width: 400px; height: 200px;" })%><br />

<label for="Content">Content</label> <br />
<%= Html.TextArea("CourseContent", new { style = "width: 400px; height: 200px;" })%><br />

And the code regarding the preview fields:

<div style="width: 50%; float: left;">
    <h2>Preview 1</h2>
    <div class="wmd-preview"></div>
</div>
<br />
<div style="width: 50%; float: left;">
    <h2>Preview2</h2>
    <div class="wmd-preview2"></div>
</div>
flag

2 Answers

vote up 3 vote down check

I think you'll have to write a little script in order to do this. Have a look at the apiExemple.html

link|flag
vote up 2 vote down

You need to change wmd-preview2 to wmd-preview, unless you've hacked the WMD script. It relies on class names to do its job. If you want to style the editors differently, just append a "unique" class to each of the containing elements. E.g:

<!-- omitted for brevity -->
<div class="wmd-preview first"></div>
<!-- omitted for brevity -->
<div class="wmd-preview second"></div>
<!-- omitted for brevity -->
link|flag
Tried that, same problem. – Roger Feb 4 at 15:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.