tford Can anyone tell me if there is a way to eliminate the padding in the cells of a query, perhaps using Advanced "Initialization script" or "render script".
tford I did find a way to solve this particular issue with a Custom Query, but if anyone knows how to reduce padding for a standard query for future reference I'd still like to know.
johntalbott Something like this, should work ... In custom CSS file: .k-grid-content > table > tbody > tr > td { padding: 0px; } Or in Render Script: $(".k-grid-content > table > tbody > tr > td").css("padding": "0px");