i’ve got a problem displaying a datagrid using dojo.
Populating the grid with data provided by a ItemFileReadStore works fine. But the result looks like this:

The two checkboxes below the Grid-Headings are not supposed to be there. I’ve already experimented with the DataGrid’s property rowSelector but i oviously wasn’t successful.
I’ve created the DataGrid programmatically. This is the sourcecode:
var oStore = new dojo.data.ItemFileReadStore({
data:{
identifier: 'catID',
items: [
{catID: '3', duration: '1,5'},
{catID: '4', duration: '2,0'},
{catID: '9', duration: '1,0'},
{catID: '7', duration: '2,0'}
]
}
});
var oGrid = new dojox.grid.DataGrid({
store: oStore,
query:{ catID:'*'},
autoHeight: 5,
structure:[
{name: 'KatalogID', field: 'catID', width: 'auto'},
{name: 'Dauer', field: 'duration', width: 'auto'}
]
}, dojo.create('div', {'id':'oGrid'}));
oGrid.startup();
Does anybody know, where these checkboxes come from and how they can be removed?
I found a possible Workaround, but this doesn’t fix the problem:
Including the following css-code hides the
div-container containing the unbeloved checkboxes.Unfortunately, this involeves the
checkBoxesthat are generated by therowSelector-option within theDataGrid-declaration. So if you dont need the rowSeletion-feature (at least by checkboxes), this works.