,Hi All
I have Ajax Editor in my code.But when I type something to the width given 200px, it goes straight like this'.And I need word wrap for this.
jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj
I need something like,
jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj
jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj
jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj
Please Help me to solve this issue.
Regards,
Jayesh(From India,Mumbai)
I tried below code but text is not wrapping after 200px.
<script type="text/javascript">
window.onload = func1;
function func1() {
if ($find("Editor1")) {
//get the iframe object from ajax editor
var iframe = $find("Editor1").get_editPanel().get_element().getElementsByTagName('IFRAME')[0];
iframe.width = '200px';
iframe.height = '200px';
}
}
</script>