2014-01-16 117 views
0

我發現點擊一個按鈕,我打算顯示微調圖像問題顯示微調圖像點擊

$("#btnSearch").bind('click', function() { 
    if (lookupSearchValidation()) { 
     $(this).toggle(); 

     //spiness image to display 
     $("#loading").show(); 

     //method to populate the grid 
     LoadLookUpSearchGrid(); 
    } 
}); 

但網格後的圖像顯示填充

+1

'$( 「#裝載」)顯示();''之前if' – Anup

+0

@anup這將會再展前'lookupsearchvalidation'可能是當驗證通過 – Jai

+0

$ OP只希望(「#寫加載「)表示();有它之前不會有所作爲,因爲它只會顯示所有的語句執行後,包括方法來加載網格 – Yogesh

回答

1

如果我missunderstand你,那麼,抱歉!

$("#btnSearch").bind('click', function() { 
    if (lookupSearchValidation()) { 
     $(this).toggle(); 

     //spiness image to display 
     $("#loading").show("fast",function(){ 
      //method to populate the grid 
      LoadLookUpSearchGrid(); 
     }); 


    } 
}); 
+0

謝謝@ Rami.Q它工作感謝所有 – Yogesh

+0

很高興我可以幫助 –

+0

$(「#loading」)。 「快」,函數(){load()();}}; });爲什麼我得到文本值「txtValue」null – Yogesh