HelpText
in namespace DotVVM.Framework.Controls.Bootstrap4
Renders a help text widget that can be linked to another control.
Usage & Scenarios
Renders a help text widget that can be linked to another control.
https://getbootstrap.com/docs/4.3/components/forms/#help-text
Sample 1: HelpText Usage
Use the AssociatedControlID property to specify the ID of the control which the help text is applied to.
This will ensure that assistive technologies, such as screen readers, will announce this help text when the user focuses or enters the control.
<bs:Form>
  
  <bs:FormGroup LabelText="Password">
    <bs:TextBox ID="password" Text="{value: Password}" Type="Password"/>
    
    <bs:HelpText AssociatedControlID="password">
      A simple help text for Input Password
    </bs:HelpText>
  </bs:FormGroup>
</bs:Form>using DotVVM.Framework.ViewModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace DotvvmWeb.Views.Docs.Controls.bootstrap.HelpText.sample1
{
    public class ViewModel : DotvvmViewModelBase
    {
        public string Password { get; set; }
    }
}Properties
| Name | Type | Description | Notes | Default Value | |
|---|---|---|---|---|---|
|  | AssociatedControlID | String | Gets or sets the ID of an associated control for this help text. | attribute static value | null | 
|  | ClientIDMode | ClientIDMode | Gets or sets the client ID generation algorithm. | attribute static value | Static | 
|  | DataContext | Object | Gets or sets a data context for the control and its children. All value and command bindings are evaluated in context of this value. The DataContext is null in client-side templates. | attribute bindable | null | 
|  | ID | String | Gets or sets the control client ID within its naming container. | attribute static value bindable | null | 
|  | IncludeInPage | Boolean | Gets or sets whether the control is included in the DOM of the page. | attribute bindable | True | 
|  | InnerText | String | Gets or sets the inner text of the HTML element. Note that this property can only be used on HtmlGenericControl directly and when the control does not have any children. | attribute static value bindable | null | 
|  | Visible | Boolean | Gets or sets whether the control is visible. When set to false, `style="display: none"` will be added to this control. | attribute bindable | True |