Just by getting into the Kendo UI web interface and trying to find the best way to build a simple form. Honestly, I'm a little shocked by the lack of documentation to perform such a basic task. I am using the kendo.bootstrap theme and trying to figure out how to organize a simple form, where the labels are in one column and the corresponding inputs are in another column, both are correctly aligned, etc.
If you follow the documents to create a simple form, with text box controls and labels, the text box items do not align properly ... even with their examples.
Using the following code to demonstrate this:
<div> <ul class="forms"> <li> <label class="k-label">Username:</label> <input type="text" class="k-textbox" /> </li> <li> <label class="k-label">Password:</label> <input type="text" class="k-textbox" /> </li> </ul>
Not sure if a k-tag is needed, saw it and thought that I would try ... it wonโt help.
I looked through all the style documentation and I donโt see anything there that helps in creating a simple but stylized form. Is the Kendo UI website some kind of fixed or fluid grid to help layout models, or is the user responsible for this? thanks...
source share