2012-11-07 99 views
0

我已經將clickhandler添加到可正常工作的標籤。但是當鼠標懸停在標籤上時,鼠標箭頭會顯示而不是鼠標(clickhandler仍然正常)。有沒有可能設置一些東西來保持mousearrow?java gwt不顯示光標

回答

1

如果你有一個像

<g:Label addStyleNames="{style.mytext}">MyText</g:Label> 

標籤只需添加以下到它的風格

.mytext { 
    cursor: default; 
} 

或者cursor: pointercursor: help ...

替代

或tur將<g:Label>轉換爲<g:Anchor href="..." addStyleNames="{style.myanchor}">。爲避免默認下劃線,您可能需要添加樣式

.myanchor { 
    text-decoration: none; 
}