Hi
I'm trying to customize my buttons in grid toolbars to look more fancy.
I'm trying to remove the extra background&border, to remain only the colored bootstrap button.
With "inspect element" from browser I see the .k-button class used and "padding:0px;" does the job.

So in advanced scripts->render script of the grid I have tried these, but no results:
- Method 1
$("#" + parser.m_gridId).find (".k-button").addClass ("myclass")
In mycss.css i have:
.myclass{
padding:0px;
}
- Method 2
$("#" + parser.m_gridId).find (".k-button").css ("padding", "0px");
Any ideas would be much appreciated.