コンテンツ パネルのヘッダーの色を変更して、点滅のように見せるのに苦労しています。しかし、私がしようとしているコードは機能しません。ここにコードがあります:
public class Reminder extends ContentPanel{
Timer time = new Timer{
public void run(){
rpc.getReminders(new AsyncCallBack<ArrayList<ModelData>>(){
public voidonFailure(Throwable caught)
{ }
public void onSuccess(ArrayList<ModelData> result){
//the next line does not affect any result
getHeader().setStyleAttribute("backgroundColor","red");
//even tried throught css, but both of them gave no result
getHeader().addStyleName("myredpanel");
//But this method is working, but its also overwriting the parents css styles, but i only need to change backgroun color
getHeader().setStyleName("myredpanel");
})
フォーラムを検索しましたが、それらの例は私のものでは機能しませんか? 他にどんな提案がありますか?