I would like to use my my own images on the GridWeb bottom bar.
Hi,
I think you can do. There is an attribute named “OnGridInitClientFunction”, you can change the save button image’s size in this function:
OnGridInitClientFunction=“ongridinit”
e.g
function ongridinit()
{
var button = document.getElementById("GridWeb1_SAVE");
button.style.width = "25px";
button.style.height = "25px";
}
Thank you.