custom buttons in navigation
custom buttons in navigation
Dear all!
Is it possible to add custom buttons to the header of a table, where the search box appears?
Here is an example of what I want to have: https://picasaweb.google.com/lh/photo/T01d1_TX2-mG1aduOc9DeX1nlhe0OfcWwCHsoj9flms?feat=directlink
best regards
Alex
Is it possible to add custom buttons to the header of a table, where the search box appears?
Here is an example of what I want to have: https://picasaweb.google.com/lh/photo/T01d1_TX2-mG1aduOc9DeX1nlhe0OfcWwCHsoj9flms?feat=directlink
best regards
Alex
This discussion has been closed.
Replies
[code]
// in your initialization
sDom: '>t',
[/code]
then use css or javascript/jquery to add an image, link, etc to that div
[code]
// in CSS
#hi:after {
content: url(gmail.jpg);
}
[/code]
or
[code]
// in JQuery
$('#hi').append("");
[/code]