Quantcast
Channel: SmartClient Forums
Viewing all articles
Browse latest Browse all 4756

Bug in Opera in TreeGrid columns with align:"right"

$
0
0
In one of your demos I added align:"right" to all the columns and as a result all the record cells are shifted (record cells are wider than headers)
This only happens in Opera

Example is here
http://www-demos.smartclient.com/iso...ise#freezeTree

Just replace with my version to see

Code:

isc.TreeGrid.create({
    width:500, height:224,
    dataSource: employees,
    autoFetchData:true,
    fields:[
        {name:"Name", frozen:true, width:150, align:"right"},
        {name:"Email", width:150, align:"right"},
        {name:"Job", width:150, align:"right"},
        {name:"EmployeeType", width:80, align:"right"},
        {name:"EmployeeStatus", width:80, align:"right"},
        {name:"Salary", width:80, align:"right"},
        {name:"Gender", width:80, align:"right"},
        {name:"MaritalStatus", width:80, align:"right"}
    ]
});


Viewing all articles
Browse latest Browse all 4756

Trending Articles