This is a migrated thread and some comments may be shown as answers.

[Solved] Missing column separator between last data comlumn and commands column

1 Answer 104 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
dani
Top achievements
Rank 1
dani asked on 14 Jan 2011, 09:44 AM
I see it work right in the exmple, yet in my code the last separation line (between the last data column and the 2 command buttons) is missing, which makes entering edit mode shift everything.

What am I missing ?

This is my view code:
.Columns(c =>
                        {
                            c.Bound(o => o.ActivityID).Title("ID").ReadOnly(true).Width(30);
                            c.Bound(o => o.ActivityName).Title("NAME").Width(130);
                            c.Bound(o => o.ActivityTimeHours).Title("TIME").Width(50);
                            c.Bound(o => o.Cost).Title("COST").Width(100);
                            c.Bound(o => o.WarrentyMonths).Title("WARRENTY");
                            c.Command(commands =>
                                {
                                    commands.Edit();
                                    commands.Delete();
                                }).Width(180).Title("COMMAND");
                        }).Editable(editing => editing.Mode(GridEditMode.InLine))

1 Answer, 1 is accepted

Sort by
0
dani
Top achievements
Rank 1
answered on 15 Jan 2011, 09:06 AM
I've attacked a picture of the problem to the original post.
It doesn't matter what the column order is, list column still misses it's separator.

(problem is in the css of rtl: My own answer in Stack Overflow)
but in edit mode I didn't solve it yet
Tags
Grid
Asked by
dani
Top achievements
Rank 1
Answers by
dani
Top achievements
Rank 1
Share this question
or