simo
simo
Agreed, adding it to the list.
The previous issue about this problem isn't closed https://github.com/simov/express-admin/issues/29 take a look at my last comment. I'm definitely going to add a view for creating new accounts, and it's currently...
Take a look at the ``` js "app": { "upload": "/upload/folder" } ``` [here](http://simov.github.io/express-admin-site/#configjson) Is this what you looking for
Probably specifying additional settings key is a good option, I'll think about it, currently it's not possible.
Hi, @fedaykinofdune The problem is the validator makes certain assumptions about the timestamp format outlined [here](http://dev.mysql.com/doc/refman/5.1/en/datetime.html) I'm assuming you want to edit existing records, that have a timestamp field already...
The inline records are meant to be created/edited only as inlines. If you want to hide specific column from the editview just give it `editview show false`
I'll take a look at it, let's keep this issue open for now. In the meantime you can fix the `varchar(null)` by hand. As for the missing `pk`, the script...
Also @aol-nnov I don't thing this will work ``` js "defaultValue": "uuid_generate_v4()" ``` You should set the `defaultValue` to `null` and hide the column from the editview, as I'm understanding...
If you intend to set values on the application side automatically use the [events](http://simov.github.io/express-admin-site/#events) You can take a look at how I generate a unique id and set it [here](https://github.com/simov/express-admin-tests/blob/master/config/x-relationships-compound/custom/events.js)...
One more example of the events can be found in the [examples](https://github.com/simov/express-admin-examples/blob/master/config/custom/events/events.js) repository. In both cases you can open up the model file with MySql Workbench to see how the...