Search found 27 matches

OK thanks, yes after reading that it seems that if I hyphenate in the renderer output, then It does correctly get passed through to the component, e.g.: return `<visit-card-component visit-id="${id}"></visit-card-component>`; I use camelcase everywhere else in my html templates, which, whe...
My row expander config just renders a single component with an ID from extracted from the record. I can see in console logging the ID is present in the renderer and extracted from the record correctly, but the @Input() parameter is coming through undefined inside the component. My renderer is as fol...
Hello, I'm trying to use an Angular component in the renderer for a rowExpander. It seems to almost work, and I see my component, but the @Input() parameters are coming through as undefined. On reviewing the docs, I can see that it mentions: "To use an Angular component as column renderer, head...

Can anyone think provide a way to conditionally only allow certain rows to expand when using the row expander feature, and have some rows blank instead of the expand icon?

Thanks Mats, I hadn't realised I could pass more than boolean there, that's exactly what I was after and it solves the issue perfectly.

Hey guys, keep up the absolutely amazing work, I just have a quick one. I've got just one particular place in my app where the headers need to be light instead of dark, so I've defined a custom header renderer headerRenderer : ({ column, headerElement }) => { headerElement.style.backgroundColor = 'w...
OK, I think I have repro, modification to the bigdataset example, randomizing assignments for 50 events by setting resourceId via setInterval. app.js It does say in the upgrade guide that single assignment using resourceId is still supported.. I haven't checked whether updating the assignment in the...
Hi, I'm posting this as a info req, because I'm not completely sure whether it's a bug in the Scheduler or whether I'm just doing something which I shouldn't. When my page loads, I begin an asynchronous load of a large dataset, and subscribe to a messaging channel for realtime updates. Since the mai...
The Grid component has been a great time-saver, and almost everything I've wanted to achieve has been possible. The main limitation currently I'm encountering relates to filtering. Specifically, that there are only a few different filtering presets, and these presets are unable to apply multiple fil...
I'm trying to implement a remote filtering grid and my data has some nested objects. E.g. { "id": 1, "deepObject": { "someProperty":"example" } } I'm able to specify columns with a field of "deepObject.someProperty" which displays as expected. I can ...