Hello support team,
I would like to know why setting the width of the field input element using InputWidth() does not work as described:

@using Ext.Net;
@using Ext.Net.MVC;

@{
    ViewBag.Title = "Form";
    Layout = null;
}

<!DOCTYPE html>

<html>
<head>
    <title>Ext.NET MVC Test Case</title>
</head>

<body>
    @(Html.X().ResourceManager())

    @(Html.X().FormPanel()
        .Border(false)
        .BodyPadding(10)
        .Items(
            Html.X().TextField().FieldLabel("Label 1").InputWidth(1000),
            Html.X().TextField().FieldLabel("Label 2").InputWidth(50)
        )
    )
</body>
</html>
Thank you for your assistance.

Kind regards
Dan