本文整理汇总了Java中org.gwtbootstrap3.client.ui.TextBox.setName方法的典型用法代码示例。如果您正苦于以下问题:Java TextBox.setName方法的具体用法?Java TextBox.setName怎么用?Java TextBox.setName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.gwtbootstrap3.client.ui.TextBox
的用法示例。
在下文中一共展示了TextBox.setName方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addTextBoxToFilter
import org.gwtbootstrap3.client.ui.TextBox; //导入方法依赖的package包/类
public void addTextBoxToFilter(String label,
String fieldName,
String defaultValue) {
FormGroup controlGroup = new FormGroup();
FormLabel controlLabel = new FormLabel();
controlLabel.setTitle(label);
HTML lab = new HTML("<span style=\"margin-right:10px\">" + label + "</span>");
controlLabel.setHTML(lab.getHTML());
TextBox textBox = new TextBox();
textBox.setName(fieldName);
if (defaultValue != null && defaultValue.trim().length() > 0) {
textBox.setText(defaultValue);
}
controlGroup.add(controlLabel);
controlGroup.add(textBox);
filterControlGroups.add(controlGroup);
horizontalForm.add(controlGroup);
}
示例2: addTextBoxToFilter
import org.gwtbootstrap3.client.ui.TextBox; //导入方法依赖的package包/类
public void addTextBoxToFilter(String label,
String fieldName,
String defaultValue) {
FormGroup controlGroup = new FormGroup();
FormLabel controlLabel = new FormLabel();
controlLabel.setTitle(label);
HTML lab = new HTML("<span style=\"margin-right:10px\">" + label + "</span>");
controlLabel.setHTML(lab.getHTML());
TextBox textBox = new TextBox();
textBox.setName(fieldName);
if (defaultValue != null && defaultValue.trim().length() > 0) {
textBox.setText(defaultValue);
}
controlGroup.add(controlLabel);
controlGroup.add(textBox);
filterControlGroups.add(controlGroup);
filterForm.add(controlGroup);
}
示例3: init
import org.gwtbootstrap3.client.ui.TextBox; //导入方法依赖的package包/类
public void init() {
horizontalForm.clear();
filterControlGroups.clear();
FormGroup controlGroup = new FormGroup();
FormLabel controlLabel = new FormLabel();
controlLabel.setTitle(CommonConstants.INSTANCE.Filter_Name());
HTML lab = new HTML("<span style=\"color:red\"> * </span>" + "<span style=\"margin-right:10px\">" + CommonConstants.INSTANCE.Filter_Name() + "</span>");
controlLabel.setHTML(lab.getHTML());
TextBox fieldTextBox = new TextBox();
fieldTextBox.setName(FILTER_NAME_PARAM);
controlGroup.add(controlLabel);
controlGroup.add(fieldTextBox);
filterControlGroups.add(controlGroup);
horizontalForm.add(controlGroup);
existingFiltersPanel.clear();
existingFiltersPanel.add(existingFiltersGrid);
existingFiltersGrid.loadPageSizePreferences();
existingFiltersGrid.setColumnPickerButtonVisible(false);
existingFiltersGrid.setEmptyTableCaption(CommonConstants.INSTANCE.NoCustomFilterAvailable());
}
示例4: getHiddenField
import org.gwtbootstrap3.client.ui.TextBox; //导入方法依赖的package包/类
private TextBox getHiddenField(String name,
String value) {
TextBox t = new TextBox();
t.setName(name);
t.setText(value);
t.setVisible(false);
return t;
}