This question is locked. New answers and comments are not allowed.
I am using MVC UI Extensions v. 2010.3.1110.235.
After following a hint from the forum to minimize the size of the command buttons by applying css
and setting my Command Buttons to GridButtonType.Image,
I noticed that the button images themselves are not "clickable".
However the same is true even if I remove those 2 CSS lines.
The button itself is still firing but rather hard to hit with a remaining 1 pixel area around the button image.
The Toolbar Button for adding a new record however does not show this problem, the button image itselfs is clickable and firing.
Dazed and confused ???
Thx
Jim
After following a hint from the forum to minimize the size of the command buttons by applying css
div.t-grid .t-grid-action {
min-width
:
0
;
padding
:
0
; }
div.t-grid .t-grid-action .t-
icon
{
margin
:
0
; }
and setting my Command Buttons to GridButtonType.Image,
columns.Command(commands =>
{
commands.Edit().ButtonType(GridButtonType.Image);
commands.Delete().ButtonType(GridButtonType.Image);
});
I noticed that the button images themselves are not "clickable".
However the same is true even if I remove those 2 CSS lines.
The button itself is still firing but rather hard to hit with a remaining 1 pixel area around the button image.
The Toolbar Button for adding a new record however does not show this problem, the button image itselfs is clickable and firing.
Dazed and confused ???
Thx
Jim