jeff schulz

Results 16 comments of jeff schulz

@jlabaj my workaround was to have a reference :p ` import { IStorage } from 'jodit/types/types/storage'; ` ` export let unusedIStorage: IStorage; `

at https://github.com/googlemaps/js-markerclusterer/blob/1193ff4/src/markerclusterer.ts#L114 what is the purpose/usage (there is no explanation in the documentation) of: **_onAdd_** it seems to bind to idle and render ... and this seems to be the...

thanks for this effort ngx-layout ... i don't know the internals of Flex-Layout ... so: what is the potential that future releases of Angular could 'break' current Flex-Layout ?

sorry, that is just a remnant of copy to curl from devtools ... assured that i am calling http://localhost:5021/odata/$batch ... i have set up CORS to allow any method, and...

here is my Program.cs ``` // Program.cs using gofer.Models; using Microsoft.AspNetCore.OData; using Microsoft.AspNetCore.OData.Batch; using Microsoft.OData.Edm; using Microsoft.OData.ModelBuilder; var builder = WebApplication.CreateBuilder(args); var modelBuilder = new ODataConventionModelBuilder(); modelBuilder.EntityType(); modelBuilder.EntityType(); modelBuilder.EntitySet("Customers"); modelBuilder.EntitySet("Features");...

and a contoller: ``` using gofer.Models; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.OData.Query; using Microsoft.AspNetCore.OData.Routing.Controllers; namespace gofer.Controllers { public class FeaturesController : ODataController { private static List features= new List([ new Feature{ Id...

and here is the curl from postman: ``` curl --location 'http://localhost:5021/odata/$batch' \ --header 'Content-Type: multipart/mixed; boundary=----MyCoolBatchBoundary' \ --header 'Accept: application/json, text/plain, */*' \ --header 'Accept-Encoding: gzip, deflate, br, zstd' \...

i gave it a try but same 405 ... odatamiddleware,md in the github repo has them all before, thats why i had them before yes, ../odata/$metadata ../odata/Features and .../odata/Customers all...