Benjamin F. Maier
Benjamin F. Maier
you can just copy the html-file for the field, there isn't anything special in the file itself. ```bash cd cruds_adminlte/templates/cruds/columns/ cp positivesmallintegerfield.html positiveintegerfield.html ```
I'd like this feature, too!
I solved this. One has to write a custom `django_select2`-Widget, then override the form and override the `CRUDview`. I'm keeping this issue open though as I suspect that either of...
~~Another problem: the connection does not time out for the `add_form`, it still does, however, for the `update_form`~~ Edit: I misspelled `update_form` in the original solution. I've edited the solution...
also paging @kptac , you seem to have edited the inline-template because something else did not work in #inline -- maybe you have some advice on how I could proceed...
thank you for your answer! I've since found that the CORs policy errors can be resolved by setting the following variables in your project-`settings.py`: ```python SELECT2_JS = 'select2/js/select2.min.js' SELECT2_CSS =...
It turns out that this is a long-known problem: * https://stackoverflow.com/questions/18487056/select2-doesnt-work-when-embedded-in-a-bootstrap-modal with an easy quick fix: * https://stackoverflow.com/questions/18487056/select2-doesnt-work-when-embedded-in-a-bootstrap-modal/18487440#18487440 (remove the `tabindex=-1`-attribute from the modal) For my particular case, adding this...
Indeed, I'm already using a custom form with an Ajax request to let users search through the entries :) (see my declarations above in the `forms`-section). I just wanted to...
I have never worked with conda but this seems related: https://stackoverflow.com/questions/29286624/how-to-install-pypi-packages-using-anaconda-conda-command In case somebody wants to register a Conda recipe, we're happy to merge pull requests. Please regard our [contributing...
thank you for this example! I'm doing this in a similar way when needed. Only I'm using the property `color` instead of `group`. e.g. ```python FBC = FB.copy() for n...