onBlurイベントでJavaコードを使用してag:labelの色を変更したいと思います。私はEclipse、UIBinderを使用しています。
これは私が考えていることですが、機能しません。
StandardDocumentDownload.ui.xmlファイル内
<ui:style>
.testStyle {
}
.styleRequiredData
{
color:red;
}
</ui:style>
これは私のstandardDocumentDownload.javaファイルのイベントです
@UiHandler("comboTitle")
void onComboTitleBlur(BlurEvent event) {
int title = comboTitle.getSelectedIndex();
if(title == 0)
{
labTitleReq.setText("Please enter a value");
labTitle.addStyleName("styleRequiredData");
}
else
{
labTitleReq.setText("");
}
}
イベントの発生時に、ラベルの既存のスタイルに赤を追加するにはどうすればよいですか。
敬具