@@ -198,6 +198,7 @@ export function useDataGridProps(
198
198
} ;
199
199
} ,
200
200
sort : searchParams . get ( "ordering" ) || true , // fixme
201
+ tableLayout : "fixed" ,
201
202
onPageChange,
202
203
onFieldsChange,
203
204
onFilter,
@@ -229,6 +230,7 @@ export function getFields(
229
230
filterLookup : "identificatie__icontains" ,
230
231
filterValue : searchParams . get ( "identificatie__icontains" ) || "" ,
231
232
type : "string" ,
233
+ width : "300px" ,
232
234
} ,
233
235
{
234
236
name : "archiefnominatie" ,
@@ -237,6 +239,7 @@ export function getFields(
237
239
{ label : "Blijvend bewaren" , value : "blijvend_bewaren" } ,
238
240
{ label : "Vernietigen" , value : "vernietigen" } ,
239
241
] ,
242
+ width : "180px" ,
240
243
} ,
241
244
{
242
245
name : "resultaat" ,
@@ -246,14 +249,17 @@ export function getFields(
246
249
"" ,
247
250
valueLookup : "_expand.resultaat._expand.resultaattype.omschrijving" ,
248
251
type : "string" ,
252
+ width : "180px" ,
249
253
} ,
250
254
{
251
255
name : "startdatum" ,
252
256
type : "daterange" ,
257
+ width : "150px" ,
253
258
} ,
254
259
{
255
260
name : "einddatum" ,
256
261
type : "daterange" ,
262
+ width : "150px" ,
257
263
} ,
258
264
{
259
265
name : "zaaktype" ,
@@ -262,18 +268,21 @@ export function getFields(
262
268
valueLookup : "_expand.zaaktype.omschrijving" ,
263
269
options : zaaktypeChoices ,
264
270
type : "string" ,
271
+ width : "300px" ,
265
272
} ,
266
273
{
267
274
name : "omschrijving" ,
268
275
filterLookup : "omschrijving__icontains" ,
269
276
filterValue : searchParams . get ( "omschrijving__icontains" ) || "" ,
270
277
type : "string" ,
278
+ width : "300px" ,
271
279
} ,
272
280
{
273
281
active : false ,
274
282
name : "toelichting" ,
275
283
type : "string" ,
276
284
filterLookup : "toelichting__icontains" ,
285
+ width : "300px" ,
277
286
} ,
278
287
{
279
288
name : "Behandelend afdeling" ,
@@ -299,21 +308,25 @@ export function getFields(
299
308
} ) ;
300
309
return behandelendAfdeling . join ( ", " ) ;
301
310
} ,
311
+ width : "180px" ,
302
312
} ,
303
313
{
304
314
name : "archiefactiedatum" ,
305
315
type : "daterange" ,
316
+ width : "130px" ,
306
317
} ,
307
318
{
308
319
active : false ,
309
320
name : "selectielijstklasse" ,
310
321
type : "string" ,
311
322
// filterLookup: // TODO: Expand?
323
+ width : "180px" ,
312
324
} ,
313
325
{
314
326
name : "hoofdzaak" ,
315
327
type : "string" ,
316
328
// valueLookup: // TODO: Expand?
329
+ width : "180px" ,
317
330
} ,
318
331
{
319
332
active : false ,
0 commit comments