Sean W
Sean W
We are encountering a race condition when uploading large images in our SPA. Making the user defined event listeners as well as the function to load the image asynchronous will...
When you call the destory method doesn't unbind the event listeners (default and user optioned one's like onInit etc) and it should. This is problematic when using it with spa...
I'd like a way to pass our own `defaultOptions` type for PrismaSelect `defaultOptions`. The select function is `any`, and the object keys are generic `string`. For reference, here's an example...
Cool extension! I thought I'd share how to make this work with mongodb. In the activeDataProvider you need to change two lines in the modifyQuery function. In mongodb the query...
The pagerination pageSize overrides the limit set in the query ``` $query = Objects::find()->orderBy('name ASC')->limit(50); $dataProvider = new ActiveDataProvider([ 'query' => $query, 'pagination' => array('pageSize' =>24) ]); ``` The above...