I've noticed I cannot just use straight bootstrap with telerik components and I have noticed that the majority of demos/samples use styling/placement such as k-textbox, k-col-start-6 and much more. I have no idea what these are doing or how they are used.
I've used bootstrap because there is excellent support for flex and the concepts are not overly difficult.
Is there any similar documentation for all the k- classes?
Trying to do a simple two-column layout. each column has multiple field groups on a single row.
Pseudo-code
form-row
col-md-6 form-group col-md-6 Label TelerikTextBox form-group col-md-2 Label TelerikTextBox form-group col-md3 Label TelerikTextBox col-md-6 form-group col-md-6 Label TelerikTextBox form-group col-md-2 Label TelerikTextBox form-group col-md3 Label TelerikTextBox
Ok, I got one step closer. Use fieldset instead of trying to use grid system solely:
<div class="form-row">
<div class="col-md-6">
<fieldset id="LeftColumn" name="LeftColumn">
<legend></legend>
<div class="form-group">
<label></label>
<input/>
</div>
<div class="form-row">
<div class="col-md-8">
<label</label>
<input />
</div>
<div class="col-md-2">
<label></label>
<input />
</div>
<div class="col-md-2">
<label></label>
<input />
</div>
</div>
</fieldset>
<fieldset id="RightColumn" name="RightColumn">
<legend></legend>
<div class="form-group">
<label></label>
<input/>
</div>
<div class="form-row">
<div class="col-md-8">
<label</label>
<input />
</div>
<div class="col-md-2">
<label></label>
<input />
</div>
<div class="col-md-2">
<label></label>
<input />
</div>
</div>
</fieldset>
</div>
</div>
However, fieldset does NOT have the customary border around it. So, we're back to trying to figuring out your CSS classes again. because there is no documentation.
It's really annoying that you use classes in the examples and even in the documentation.
But no documentation about the classes. So we have to guess.
I speed up installing a VS extension that show a preview of the styles while you type.