dojango icon indicating copy to clipboard operation
dojango copied to clipboard

dojo and django - the perfect couple

Results 21 dojango issues
Sort by recently updated
recently updated
newest added

I have created a custom field, by subclassing db.models.CharField, which provides its own formfield-method, which points to a custom form field, using the method described here: http://docs.djangoproject.com/en/dev/howto/custom-model-fields/#specifying-the-form-field-for-a-model-field But my method...

What steps will reproduce the problem? 1. Upgrade Django to at least r15304 2. In your template include "dojango/include.html" What is the expected output? What do you see instead? DOJANGO...

Problem occours when we have MultiValueField with required=True. MultiValueField sets required=False on every field it aggregates (in **init**()). Then during validation, on every field it aggregates, it uses MultiValueField.required to...

A lot of the times, I want to serialize an object, but not send all of its properties. This becomes cumbersome with Django models. There should be some way to...

The _build_args method in dojango/data/modelstore/methods.py seems to overwrite self.args in the StoreMethod used in the StoreField: ``` args = [] for arg in self.args: try: arg = self.field.proxied_args.get(arg.__name__, arg) except...

Hi! I had a need for the tag mentioned in the TODO comment in templatetags/dojango_base.py, so I implemented it. I have never written a template tag before, so I just...

What steps will reproduce the problem? 1. Add the dojo.require function calls at the end of the body tag by looping through the DOJANGO.COLLECTOR variable. 2. Open the page in...

I've been working on getting charting support integrated into dojango. This is an initial upload to get some feedback. It supports all the basic 2D charts. The pie chart is...

Grid.startup() is called at creation, this is fine in many cases. However if you have a tab setup and the grid is not displayed in the visible tab at startup...

Since the current extract function only allowed arguments to go on a single line I wrote this to allow multiline arguments. def extract_multiline_nodelist_options(nodelist, context=None): """ Returns a dict containing the...