本文整理汇总了Java中com.google.gwt.dom.client.TableCellElement.removeClassName方法的典型用法代码示例。如果您正苦于以下问题:Java TableCellElement.removeClassName方法的具体用法?Java TableCellElement.removeClassName怎么用?Java TableCellElement.removeClassName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.gwt.dom.client.TableCellElement
的用法示例。
在下文中一共展示了TableCellElement.removeClassName方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: selectCell
import com.google.gwt.dom.client.TableCellElement; //导入方法依赖的package包/类
@Override
void selectCell( CellValue<? extends Comparable<?>> cell ) {
if ( cell == null ) {
throw new IllegalArgumentException( "cell cannot be null" );
}
Coordinate hc = cell.getHtmlCoordinate();
TableRowElement tre = tbody.getRows().getItem( hc.getRow() )
.<TableRowElement>cast();
TableCellElement tce = tre.getCells().getItem( hc.getCol() )
.<TableCellElement>cast();
//Cell selected style takes precedence
String cellSelectedStyle = resources.cellTableCellSelected();
String cellOtherwiseStyle = resources.cellTableCellOtherwise();
String cellMultipleValuesStyle = resources.cellTableCellMultipleValues();
tce.removeClassName( cellMultipleValuesStyle );
tce.removeClassName( cellOtherwiseStyle );
tce.addClassName( cellSelectedStyle );
tce.focus();
}
示例2: removeClassName
import com.google.gwt.dom.client.TableCellElement; //导入方法依赖的package包/类
@Override
public void removeClassName( String className )
{
TableCellElement td = getTd();
if( td != null )
td.removeClassName( className );
}
示例3: deselectCell
import com.google.gwt.dom.client.TableCellElement; //导入方法依赖的package包/类
@Override
@SuppressWarnings({ "rawtypes" })
void deselectCell( CellValue<? extends Comparable<?>> cell ) {
if ( cell == null ) {
throw new IllegalArgumentException( "cell cannot be null" );
}
Coordinate hc = cell.getHtmlCoordinate();
TableRowElement tre = tbody.getRows().getItem( hc.getRow() )
.<TableRowElement>cast();
TableCellElement tce = tre.getCells().getItem( hc.getCol() )
.<TableCellElement>cast();
//Merging, grouping etc could have led to the selected HTML cell disappearing
if ( tce != null ) {
String cellSelectedStyle = resources.cellTableCellSelected();
String cellMultipleValuesStyle = resources.cellTableCellMultipleValues();
String cellOtherwiseStyle = resources.cellTableCellOtherwise();
tce.removeClassName( cellSelectedStyle );
//Re-apply applicable styling
if ( cell.isOtherwise() ) {
tce.addClassName( cellOtherwiseStyle );
}
if ( cell instanceof CellValue.GroupedCellValue ) {
CellValue.GroupedCellValue gcv = (CellValue.GroupedCellValue) cell;
if ( gcv.hasMultipleValues() ) {
tce.addClassName( cellMultipleValuesStyle );
}
}
}
}