#F148333
, #253573
- RowSelected
event is not triggered during multiple selection is now resolved.#253326
- Script error throws while performing drag and drop when grid inside the schedule component is now resolved.#F148721
- Drag and drop not working when using Custom Adaptor is now resolved.#250256
- Updating values in Grid misbehaves when having a Field name as ‘id’ for a column is now resolved.Filterbar
template is now resolved.#249080
, #251565
, #F148304
- Provided support to inherit DataAdaptor
from OwningComponentBase
and to use Dependency injection.#F148119
- Provided support to show grouped details in column aggregate.#251425
- OnResizeStart
and ResizeStopped
events provided for resize actions.An Integer type argument is added for the BatchUpdate
and BatchUpdateAsync
method of Data Adaptor Class.
Previous
public override object BatchUpdate
(DataManager dm
, object Changed, object Added, object Deleted, string KeyField
, string Key){
// Custom Code
}
public override object BatchUpdateAsync
(DataManager dm
, object Changed, object Added, object Deleted, string KeyField
, string Key){
// Custom Code
}
Now
public override object BatchUpdate
(DataManager dm
, object Changed, object Added, object Deleted, string KeyField
, string Key, int
DropIndex
){
// Custom Code
}
public override object BatchUpdateAsync
(DataManager dm
, object Changed, object Added, object Deleted, string KeyField
, string Key, int
DropIndex
){
// Custom Code
}
#148829
, #148855
- The content of the tab items are rendered properly when add or remove tab items dynamically or set value to Disabled
property dynamically.