Search found 73 matches

In the following example https://www.bryntum.com/examples/grid/php/ replace the code as follows. Click the button 'Test me for resize' const grid = new Grid({ appendTo : 'container', features : { cellEdit : true }, columns : [ { text : 'Id', field : 'id', width : 100, editor : false, renderer({ reco...

'resizeToFitContent' does not work when the record is empty. We do not want to send empty records. I have attached the screenshot for the bug.

Is there any work around for this?

Screenshot 2022-04-11 at 13.43.48.png
Screenshot 2022-04-11 at 13.43.48.png (218.57 KiB) Viewed 336 times

The error is still in 5.0.1. Is it nightly next or release in which the error is suppose to be resolved.

After our latest update to version 5 some of our customers face the following issue in edge and chrome browser after using the application for few hours. I have attached screenshot of console error. This is how we access the state in our code: scheduler.state = state; We access direct scheduler.stat...

Hi,

This is sample response of event in the older version Image
The tplData is missing when I update to version5. The sample data of event is as below.
Image

Screenshot 2022-02-23 at 17.43.19.png
Screenshot 2022-02-23 at 17.43.19.png (255.64 KiB) Viewed 271 times
Typing the following text in "><img src=x onerror=alert(21)> in text field in grid. In the following example: https://bryntum.com/examples/grid/columns/ , adding "htmlEncode: false " to the column and adding the above text pops up alert message. Is there any solution for this?
Here is my sample code store.filter(function(event) { ...... } Here i filter on the rendered event . My event is rendered as table data. So I use the 'custom filter' to filter few table items. But the problem is if I scroll or try another column filter the first filter disappears. Screenshot 2021-11...
column.filterable = filterField: { type: 'combo', ref: '', width: 'auto', editable: false, valueField: 'field', value:'' , multiSelect: true, hidePickerOnSelect: false, listItemTpl: function (record) { return record.field; }, items: '', chipView: { itemTpl: function (record) { return '<div class=&q...

I have 2 filters. One in column filter and another in tbar. The change in column filter resets the 'tbar filter' even if I do not do clearfilter. Is it possible for store not to clear the 'tbar filter' when i filter the column filter.
Is it possible to achieve it through state?

I am using grid.state https://www.bryntum.com/docs/scheduler/api/Core/data/mixin/StoreState In the below example : https://bryntum.com/examples/grid/filterbar/ If i scroll to the bottom and filter the city field my scroll is reset to beginning. Is it possible to for filter to know the state of scrol...