當前位置: 首頁>>代碼示例>>Java>>正文


Java InputElement.select方法代碼示例

本文整理匯總了Java中com.google.gwt.dom.client.InputElement.select方法的典型用法代碼示例。如果您正苦於以下問題:Java InputElement.select方法的具體用法?Java InputElement.select怎麽用?Java InputElement.select使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.google.gwt.dom.client.InputElement的用法示例。


在下文中一共展示了InputElement.select方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: componentDidUpdate

import com.google.gwt.dom.client.InputElement; //導入方法依賴的package包/類
/**
 * Safely manipulate the DOM after updating the state when invoking
 * `props.onEdit()` in the `handleEdit` method above.
 * For more info refer to notes at https://facebook.github.io/react/docs/component-api.html#setstate
 * and https://facebook.github.io/react/docs/component-specs.html#updating-componentdidupdate
 */
public void componentDidUpdate(TodoItemProps prevProps, TodoItemProps prevState) {

    if (!prevProps.isEditing && props.isEditing) {
        InputElement inputEl = InputElement.as((InputElement)this.refs.get("editField"));
        inputEl.focus();
        inputEl.select();
    }
}
 
開發者ID:GWTReact,項目名稱:gwt-react-examples,代碼行數:15,代碼來源:TodoItem.java

示例2: edit

import com.google.gwt.dom.client.InputElement; //導入方法依賴的package包/類
/**
 * Convert the cell to edit mode.
 * @param context the {@link Context} of the cell
 * @param parent the parent element
 * @param value the current value
 */
protected void edit( Context context,
                     Element parent,
                     String value ) {
    setValue( context, parent, value );
    InputElement input = getInputElement( parent );
    input.focus();
    input.select();
}
 
開發者ID:kiegroup,項目名稱:kie-wb-common,代碼行數:15,代碼來源:WaterMarkEditTextCell.java

示例3: edit

import com.google.gwt.dom.client.InputElement; //導入方法依賴的package包/類
/**
 * Convert the cell to edit mode.
 *
 * @param parent
 *            the parent element
 * @param value
 *            the current value
 * @param key
 *            the key of the row object
 */
protected void edit(Context context, Element parent, TaskGridNameCellDetails value) {

        setValue(context, parent, value);
        InputElement input = getInputElement(parent);
        input.focus();
        input.select();
}
 
開發者ID:waynedyck,項目名稱:gwt-gantt,代碼行數:18,代碼來源:TaskGridNameCell1.java

示例4: edit

import com.google.gwt.dom.client.InputElement; //導入方法依賴的package包/類
/**
 * Convert the cell to edit mode.
 *
 * @param parent the parent element
 * @param value the current value
 * @param key the key of the row object
 */
protected void edit(Context context, Element parent, String value) {
  setValue(context, parent, value);
  InputElement input = getInputElement(parent);
  input.focus();
  input.select();
}
 
開發者ID:waynedyck,項目名稱:gwt-gantt,代碼行數:14,代碼來源:CellTextImpl.java

示例5: edit

import com.google.gwt.dom.client.InputElement; //導入方法依賴的package包/類
/**
 * Convert the cell to edit mode.
 *
 * @param parent
 *            the parent element
 * @param value
 *            the current value
 * @param key
 *            the key of the row object
 */
protected void edit(Context context, Element parent, Task value) {

        setValue(context, parent, value);
        InputElement input = getInputElement(parent);
        input.focus();
        input.select();
}
 
開發者ID:waynedyck,項目名稱:gwt-gantt,代碼行數:18,代碼來源:TaskGridNameCell.java

示例6: edit

import com.google.gwt.dom.client.InputElement; //導入方法依賴的package包/類
/**
 * Convert the cell to edit mode.
 *
 * @param context the {@link Context} of the cell
 * @param parent the parent element
 * @param value the current value
 */
protected void edit(Context context, Element parent, String value) {
  setValue(context, parent, value);
  InputElement input = getInputElement(parent);
  input.focus();
  input.select();
}
 
開發者ID:rkfg,項目名稱:gwtutil,代碼行數:14,代碼來源:EditTextCellPatched.java


注:本文中的com.google.gwt.dom.client.InputElement.select方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。