Damien Arrachequesne
Damien Arrachequesne
Fork
The chat example will now be maintained here: https://github.com/socketio/chat-example Thanks!
Closes #2 and #5
See https://github.com/darrachequesne/spring-data-jpa-datatables-sample/issues/15
To be included in the sample project here: https://github.com/darrachequesne/spring-data-jpa-datatables-sample/ Reference: https://editor.datatables.net/manual/server Contribution is welcome!
Reference: https://datatables.net/extensions/searchbuilder/ We will need to handle the additional query parameters (which can be nested): ``` searchBuilder.criteria[0].condition = searchBuilder.criteria[0].data Firstname searchBuilder.criteria[0].origData firstName searchBuilder.criteria[0].type string searchBuilder.criteria[0].value[] john searchBuilder.criteria[0].value1 john searchBuilder.criteria[1].criteria[0].condition starts...
Currently, @ManyToOne relationships with `QDataTablesRepository` break global search: Server: ``` java @Entity public class User { @Id private Integer id; @ManyToOne @JoinColumn(name = "id_address") private Address address; } @Entity public...
- Add a page in the plugin settings, allowing to submit a custom template. Example: ``` (): [] at [] ``` - Then add the custom fields in the form...
**Describe the bug** It seems calling `log.setup()` interferes with loggers already created with the `getLogger()` method. I used the documentation [here](https://deno.land/[email protected]/log/README.md) as reference. **Steps to Reproduce** `index.ts` ```ts import *...
Hi! Is there a way to put a subscription in binary mode? ```ts import { connect } from "https://deno.land/x/[email protected]/mod.ts"; const pubClient = await connect({ hostname: "localhost" }); const subClient =...
Hi! It seems the private attributes are not updated in the declaration file. Do you know if it's possible? `input.ts`: ```ts export class Class { public publicField: number = 123;...