Alex.Buchatsky

Results 14 issues of Alex.Buchatsky

**Current behaviour** When .efmodel diagram is an active document window and after selecting menu View->Other Windows->Entity Model Explorer: 1. Entity Model Explorer window is not activated if it was opened...

Currently SpaYarp uses the root ClientUrl to check if SpaClient server is running, even when PublicPath is defined. Formerly I used webpack to start webpack dev srver, and I specified...

It's a feature request. As [angular team says](https://github.com/angular/angular/commit/37797e2) it is recommended to move to the new HttpClient api. I've written my custom AngularCommonAjaxProvider class in typescript which you may use...

1) sqltree.js: To accept CHAR(1) Oracle "boolean" toObject: function (row, result) { ... if (column.modelColumn.type === type.BOOLEAN && (val !== null)) { //val = !!val; val = [true, 1].indexOf(val) !=...

## jinqu-odata version 1.1.3 ## Current behavior Not available ## Proposed behavior OData IN operator in $filter clause implemented as an Array.includes() method of JS, so that JS expression `[value1,value2,...

## jinqu-odata version 1.1.3 ## Current behavior Not available ## Proposed behavior 1) Executing actions bound to entity type using POST ``` await service.companies() .byKey(5) .action("Lock") .setData(value); .executeAsync(); ``` 2)...

## jinqu-odata version 1.1.3 ## Current behavior Only expansion is available ## Proposed behavior navigateTo() method (which is usually preseeded by byKey() method) should append a navigation entity/collection name to...

## jinqu-odata version 1.1.3 ## Proposed behavior ODataService Ajax request interceptor (e.g. for adding Authorization http header) as an option in ODataService initialization Implementation: ``` export interface IAjaxInterceptor { intercept(options:...

## jinqu-odata version 1.1.3 ## Use case When ODataService returns IODataQuery instead of ODataQuery, e.g. ``` products(key?: number): IODataQuery { let query = this.createQuery('products'); return key ? query.byKey(key) : query;...

## jinqu-odata version 1.1.3 ## Steps to reproduce tsc brings an error when all of the following conditions are satisfied: - tsconfig.strictNullChecks=true (or strict=true and strictNullChecks is omited); - the...