Hi There.
Just following the examples that you can find on the grid for .NET web forms. I just find out that when you use inline form templates, the library sets some styles overriding the stylesheet. as style="text-align: center; width: 100%; height: 32px;"
<script id="templateVehicle" type="text/template">
<div class="main-container inside">
<div class="s-block-w">
<div class="fieldEj">
<span class="lbl">Make & Model:</span>
<input type="text" class="textbox" style="width:auto" />
</div>
</div>
</div>
</script>
<ej:Grid ID="GridVehicles" runat="server" AllowResizeToFit="true" SelectionType ="Single" >
<EditSettings AllowAdding="true" EditMode="InlineFormTemplate" InlineFormTemplateID="#templateVehicle" />
<ClientSideEvents RowSelected="vehicle_selected" ActionComplete ="complete"/>
<ToolbarSettings ShowToolbar="true" ToolbarItems="add,cancel" ></ToolbarSettings>
<Columns>
<ej:Column Field="VehicleCode" Visible="false"></ej:Column>
</Columns>
</ej:Grid>
How can I remove or not allow this style sets on my form when I'm trying to add an element.
Thanks in advance.
Nestor Ochoa