This component extends the base input with textbox-specific behavior.
<rl-textbox maxlength="" ng-model="" validator="" label="" name=""> ... </rl-textbox>
Sets the maxlength of the textbox.
See input for detail on the base options.
An input with maxlength and label.
<rl-textbox maxlength="20" label="Test" ng-model="test.text"></rl-textbox>
Output (if test.text is empty):
<input type="text" class="form-control" maxlength="20" ng-model="test.text" placeholder="Test" />
Output (if test.text has a value):
<label class="show-hide">Test</label>
<input type="text" class="form-control" maxlength="20" ng-model="test.text" placeholder="Test" />