Search found 20 matches

We just need "row:true" in the section in the feature to show the checkbox on the grid. It is showing checkbox on every row of the grid table. What if I don't want to show the check box for a particular row. Is there any way?

Thank you for your support.

Adding a checkbox to select all the records is easy: selectionMode : { ... showCheckAll : true }, And changing the checkcolumn header is doable yet a bit more complex. You need to override standard CheckColumn since it doesn't support that out of the box: // override standard CheckColumn class MyCh...
if you want to select a row, you can put the code as below selectionMode: { //rowCheckboxSelection: true, row: true, checkbox: true, multiSelect: true }, But I want to control the header by having a name like ' Row Selection'. Even more, I want to call the function to select all records. How do I do...
saki wrote: Wed Sep 09, 2020 2:33 pm

The X button is clear trigger of the TextField that is used in the FilterBar. This field fires https://bryntum.com/docs/scheduler/#Core/widget/TextField#event-clear event so you can install a custom listener on it and do your handling therein.

Saki, thank you very much!

We have a demo that shows how to filter with date: https://bryntum.com/examples/grid/filterbar/, have you seen it? Or you want a different behavior? Thank you for answering but my problem is that I first define what sort i need to do by specifically 'date format'. It does not filter when i first se...

As you see the image, i have an action column, which i don't need to show them to hide or show. I tried to find the property but i couldn't. Is there any property not to show on the column selection?

https://imgur.com/a/y3pdbUp

I am using the url to readData. I need to declare store before the $scope.orderGrid is declared so I can use some data beforehand. So the pseudo code might be the code like the below. How can I read data and assign that data to store and declare grid afterwards? [*]Pseudo Code $scope.store = new brn...
This is the thing I have tried to make the date default filter bar working. Every string column works perfectly but when it comes to this date filter, it is giving correct value such as 02/09/2020'. I tried to convert to new Date and used DateHelper to make the format right but it didn't help. Then ...
Hi notepads, FilterBar (https://bryntum.com/docs/grid/#Grid/feature/FilterBar) manages filters of the store in the grid. To clear that value you need to remove filter in the grid store. As an example, you may use the next code: const cityFilter = grid.store.filters.getBy('id', 'city'); grid.store.r...

As you see the picture below, the x button, I can't find any function, event or properties. I want to do certain actions in the event when the user clicks 'X' button in the filterBar. How do I call this function ?

https://imgur.com/a/bSbRmtx