This question is locked. New answers and comments are not allowed.
In my Grid, when I use a Numeric Text Box for edit, I can't see the the arrows, because the Numeric Textbox is wider than the table cell. See attachment.
Even if I increase the width of the column it is not effective.
If I make the width of the TextBox smaller, it takes also no effect.
And the Html:
Even if I increase the width of the column it is not effective.
| c.Bound(r => r.RemainingDays).Format("{0}").Width(60).Title("Days"); |
| c.Bound(r => r.RemainingHours).Format("{0}").Width(15).Title("Hours"); |
| <td><div id="RemainingDays" class="t-widget t-numerictextbox"><input id="RemainingDays-input-text" name="RemainingDays-text" class="t-input"><a title="Increase value" tabindex="-1" href="#" class="t-link t-icon t-arrow-up">Increment</a><a title="Decrease value" tabindex="-1" href="#" class="t-link t-icon t-arrow-down">Decrement</a><input value="0" name="RemainingDays" id="RemainingDays-input" class="t-input" style="display: none;"></div> |
| <span id="RemainingDays_validationMessage" class="field-validation-valid"></span></td> |
| Html.Telerik().NumericTextBox() |
| .Name(ViewData.TemplateInfo.HtmlFieldPrefix) |
| .Value(Model) |
| .HtmlAttributes(new {width="25px"}) |
| <div width="25px" id="RemainingDays" class="t-widget t-numerictextbox"><input id="RemainingDays-input-text" name="RemainingDays-text" class="t-input"><a title="Increase value" tabindex="-1" href="#" class="t-link t-icon t-arrow-up">Increment</a><a title="Decrease value" tabindex="-1" href="#" class="t-link t-icon t-arrow-down">Decrement</a><input value="0" name="RemainingDays" id="RemainingDays-input" class="t-input" style="display: none;"></div> |