IgxInputGroupComponent を無効にする @Input プロパティ。
<igx-input-group [disabled]="'true'"></igx-input-group>
IgxInputGroupComponent の ElementRef プロパティ。
id 属性の値を設定する @Input プロパティ。提供されていない場合、自動的に生成されます。
<igx-input-group [id]="'igx-input-group-55'"></igx-input-group>
コンポーネントのテーマを返します。
デフォルト テーマは comfortable です。
利用可能なオプションは comfortable、cosy、および compact です。
let componentTheme = this.component.displayDensity;
コンポーネントのテーマを設定します。
IgxInputGroupComponent に境界線があるかどうかを返します。
@ViewChild("MyInputGroup")
public inputGroup: IgxInputGroupComponent;
ngAfterViewInit(){
let inputBroder = this.inputGroup.hasBorder;
}
IgxInputGroupComponent にヒントがあるかどうかを返します。
@ViewChild("MyInputGroup")
public inputGroup: IgxInputGroupComponent;
ngAfterViewInit(){
let inputHints = this.inputGroup.hasHints;
}
IgxInputGroupComponent の type が border かどうかを返します。
@ViewChild("MyInputGroup1")
public inputGroup: IgxInputGroupComponent;
ngAfterViewInit(){
let isTypeBorder = this.inputGroup.isTypeBorder;
}
IgxInputGroupComponent の type が box かどうかを返します。
@ViewChild("MyInputGroup1")
public inputGroup: IgxInputGroupComponent;
ngAfterViewInit(){
let isTypeBox = this.inputGroup.isTypeBox;
}
IgxInputGroupComponent の type が Fluent かどうかを返します。
@ViewChild("MyInputGroup1")
public inputGroup: IgxInputGroupComponent;
ngAfterViewInit(){
let isTypeFluent = this.inputGroup.isTypeFluent;
}
IgxInputGroupComponent の type が fluentSearch かどうかを返します。
@ViewChild("MyInputGroup1")
public inputGroup: IgxInputGroupComponent;
ngAfterViewInit(){
let isTypeFluentSearch = this.inputGroup.isTypeFluentSearch;
}
IgxInputGroupComponent の type が line かどうかを返します。
@ViewChild("MyInputGroup1")
public inputGroup: IgxInputGroupComponent;
ngAfterViewInit(){
let isTypeLine = this.inputGroup.isTypeLine;
}
IgxInputGroupComponent の type が search かどうかを返します。
@ViewChild("MyInputGroup1")
public inputGroup: IgxInputGroupComponent;
ngAfterViewInit(){
let isTypeSearch = this.inputGroup.isTypeSearch;
}
入力グループの入力要素がオンクリックで自動的にフォーカスされるかどうかを返します。
let supressInputAutofocus = this.inputGroup.supressInputAutofocus;
入力グループの入力要素がオンクリックで自動的にフォーカスされるかどうかを設定します。
<igx-input-group [supressInputAutofocus]="true"></igx-input-group>
IgxInputGroupComponent のタイプを返します。入力のスタイル設定。
値は、line -0、box -1、border -2、fluent -3 fluentSearch -4 および search -5 です。デフォルトは line です。
@ViewChild("MyInputGroup")
public inputGroup: IgxInputGroupComponent;
ngAfterViewInit(){
let inputType = this.inputGroup.type;
}
入力のスタイルを設定する @Input プロパティ。
有効な値は、line、box、border、fluent、「search」、および fluentSearchです。デフォルトは line です。
<igx-input-group [type]="'search'">
IgxInputGroupComponentの自動生成されたクラスを有効/無効にするプロパティ。 デフォルトでクラスが適用されます。@ViewChild("MyInputGroup") public inputGroup: IgxInputGroupComponent; ngAfterViewInit(){ this.inputGroup.defaultClass = false;}