-
-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug]: adding onCellClick on editor column removes autoEdit , doesn't remove selectEditor #60
Comments
You should give a try to the regular With a the grid object grid.onCellChange.subscribe((e, args) => {
console.log('onCellChange', args);
this.updatedObject = args.item;
}); The example 3 has all the code (in the column or on the grid object), you just need to comment out the portion you don't want. |
thanks for that suggestion. Using the grid's onClick event worked (a single clicked opens the editor and the select editor gets removed when clicking another cell). I can use this as a work around and leave this open so we can investigate when we have the time. |
Fixed in commit on major 2.x branch and cherry picked to master. The issue is caused by this line I'm thinking about changing the signature of these 2 functions in our new Major release. I basically think that I should re-expose the event (just like SlickGrid does), so that the user can call a /** an event that can be used for triggering an action after a cell change */
- onCellChange?: (args: OnEventArgs) => void;
+ onCellChange?: (e: Event, args: OnEventArgs) => void;
/** an event that can be used for triggering an action after a cell click */
- onCellClick?: (args: OnEventArgs) => void;
+ onCellClick?: (e: Event, args: OnEventArgs) => void; With that new signature, a user could call a stop bubbling from the column definition this.columnDefinitions = [
{
id: 'delete',
field: 'id',
formatter: Formatters.deleteIcon,
onCellClick: (e, args) => {
this.deleteFromBackend();
e.stopImmediatePropagation();
}
}
]; |
Exposed the Event as first argument in new upcoming |
* refactor(services): refactor singleton Services into transient - also add new AureliaGridInstance * refactor(service): rename GridExtraService to GridService * deprecate(service): delete GridExtraUtil & move function to GridService * refactor(code): remove deprecated "onBackendEventApi" * refactor(code): remove deprecated "selectOptions" from SelectFilter * refactor(code): remove deprecated FormElementType * refactor(model): remove exportWithFormatter from the GridOptions * refactor(service): remove deprecated initOptions replaced by init * refactor(model): remove deprecated "dataFilters" * refactor(backend): all backend service methods renamed as processOnX - to remove confusion with Event Emitters, the 3 Backend Service API methods were renamed to start with the prefix "processOnX" instead of "onX" - for example onFilterChanged is now processOnFilterChanged * refactor(gridOptions): all Grid Menu showX were renamed hideX - since we had both "hideX" (in SlickGrid) and "showX", it's better to rename them all to "hideX" for consistencies * refactor(events): change aurelia event prefix - to make a distinction between Aurelia Events vs SlickGrid Events, we will use (asg for Aurelia, sg for SlickGrid) * refactor(i18n): add i18n Grid Options instead of using params * refactor(grid): add multiple grids in a view * refactor(searchTerm): remove searchTerm and only use searchTerms - prior to this, user could predefined searchTerm (singular) or searchTerms (array). To simplify the logic, the singular searchTerm has been dropped in favor of the array searchTerms * refactor(example): fix multiple grids not displayed * refactor(styling): change highlight and selected row color to blueish * refactor(styling): make selected row a little darker * refactor(formatter): console error should contain new grid options i18n * update readme * refactor(services): add singleton(true) decorator for multiple grids * fix(i18n): make sure all Services use correct Grid Options i18n * refactor(example): make row selection titles more obvious * refactor(event): renamed onGridStateServiceChanged to onGridStateChanged * feat(grid): expose Slick Grid & DataView objects in AureliaGridInstance * fix(grid): Dynamically Add Column Header was broken with non-singleton * refactor(styling): change mouse hover & selection background colors * refactor(example): add 2x grids in the Basic Grid sample * refactor(editor): move all Editor params into editor - instead of using the generic "params" to pass collection and other arguments, we will use the "editor" object - doing this brings TS types and intellisense * refactor(service): refactored delete/update item functions * fix(sorter): issue #72 circular dependency from last PR #70 * fix(event): remove e.stopImmediatePropagation to fix issue #60 * refactor(columnDef): make editor.type the Editor class export function editor.type was enum, but that means the library would be responsible for finding the editor. Also, special logic would have to be in place for custom editors. By making editor.type the exported class function all we have to do is pass it is slickgrid to create * refactor(example): fixed onCellChange event and advertise delete feature * refactor(event): expose event to columnDef onCellClick and onCellChange * refactor(event): use subscriptions array and loop to unsubscribe - also do the same with Services, make an array and loop through when disposing them * refactor(editor): change ColumnEditor.type to ColumnEditor.model * refactor(filter): use Filter model on ColumnFilter, remove FilterType * feat(gridState): Grid State & Presets for columns (position, size, visibility) (#74)
I'm submitting a bug report
Current behavior:
in
example3.ts
if you add anonCellClick
to either select editor's column definition (% Complete or Prerequisite), it removes autoEdit and you have to double click to show the editor. Also, the single or multiple select editor stay open when clicking on another cellExpected/desired behavior:
autoEdit stays enabled and editor goes away when moving to another cell
I am doing advanced filtering in the select editor when the user clicks the cells. I want to change the
columnDef.params.collection
depending on thedataContext
. I have not been able to figure out why these problems occur. Maybe theautoEdit
turns off because of this line.Example of what I am doing. I have a grid of roles below and a column for users. Each row's multipleSelectEditor's collection should be filtered by the role column value (called title in the screenshot) to show the available users. You can also see the problem
the logic:
The text was updated successfully, but these errors were encountered: