我点击了一个按钮,我打算显示一个微调图像
$("#btnSearch").bind('click', function () {
if (lookupSearchValidation()) {
$(this).toggle();
//spiness image to display
$("#loading").show();
//method to populate the grid
LoadLookUpSearchGrid();
}
});
但图像显示在网格填充
之后答案 0 :(得分:1)
如果我误解了你,那就对不起!
$("#btnSearch").bind('click', function () {
if (lookupSearchValidation()) {
$(this).toggle();
//spiness image to display
$("#loading").show("fast",function(){
//method to populate the grid
LoadLookUpSearchGrid();
});
}
});