I'm embedding an kendo.ui.editor in a UIWebView in an iOS application using html, css and javascript hosted on the device itself.
I am unable to force the height of my text area below 150px.
My html is this:
The above yield a text area which is 100px wide, but 150px high.
Controlling the width is no problem, and the height is also fine when giving a value above 150px.
The size of the UIWebView containing the editor is 500px wide and 250px high, but this size does not seem to affect the 150px limit.
I have tried various tweaks to the css (height, min-height, …), but to no avail…
Is there somewhere a limit on how low the height of an text area can go ? Somehwere in the kendo css that I haven't found / browser defaults / something completely different ?
I am unable to force the height of my text area below 150px.
My html is this:
<body><div><textarea id="editor" style="width:100px;height:100px;"></textarea><script>$(document).ready(function() { $("#editor").kendoEditor( { encoded: false } ); } );</script></div></body>Controlling the width is no problem, and the height is also fine when giving a value above 150px.
The size of the UIWebView containing the editor is 500px wide and 250px high, but this size does not seem to affect the 150px limit.
I have tried various tweaks to the css (height, min-height, …), but to no avail…
Is there somewhere a limit on how low the height of an text area can go ? Somehwere in the kendo css that I haven't found / browser defaults / something completely different ?