Craig Ritchie

Results 8 comments of Craig Ritchie

I'm not sure I followed all the instructions properly but I still can't figure it out. If you just take what I have and move the grid items around such...

I think is caused by this line in NgGrid.ts: this._renderer.setElementStyle(this._ngEl.nativeElement, 'width', '100%');//(maxCol \* (this.colWidth + this.marginLeft + this.marginRight))+'px'); That 100% is causing the problem. If you put all that commented...

I noticed this a while back. For the Num Pad to work the shortcut must register as NumPad. For example, “Num+4”, and not just “4”. The shortcuts dialog is not...

Yeah… clearly something is different between the two versions. When I export the shortcuts and edit the XML to this: ` pad-note-8 4 Num+4 ` Then import it back in...

It seems to me the issue is in the Edit Shortcut dialog. When I press 4 on the NumPad, MuseScore must enter Num+4 and not just 4. It needs to...

@valorkin This doesn't feel like a concern of typeahead. Instead @Abrissirba you should write a service that does this. This is based on the asynchronous example in the [documentation](https://valor-software.com/ng2-bootstrap/#/typeahead). ```...

Once you have moved beyond the simple string/array of strings comparison the typeahead really can't make any assumptions about the filtering algorithm. To do what is being requested @valorkin and...

v17 handled it at [line 5148 in table.ts on branch v17 Prod](https://github.com/primefaces/primeng/blob/4af8e687f3d01f09943036c2ceb1c2e71f11b8aa/src/app/components/table/table.ts#L5148) I think. But v18 and beyond uses a completely different approach that I couldn't quite figure out but...