Custom Query (58 matches)
Results (28 - 30 of 58)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#55 | fixed | xhtml, select and option: problem with integer | apoirier | vincent.millet |
Description |
When I use a select in a view like this: with h.select(toto).action(myattr): for name, id in mylist: h << h.option(name, value=id).selected(id_to_select) if id_to_select is an integer the selection does not work. |
|||
#66 | fixed | The serializer can't serialize an empty DOM | apoirier | apoirier |
Description |
Exception : NoApplicableMethods: (([], 'text/html', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">', False), {}) with this code: from nagare import presentation, ajax
class C:
pass
@presentation.render_for(C, model='async')
def render(self, h, *args):
return h.root # Returning an empty DOM
@presentation.render_for(C)
def render(self, h, comp, *args):
h << h.div(id='async_div')
h << h.a('Click me').action(ajax.Update(
render=lambda h: comp.render(h, model='async'),
component_to_update='async_div')
)
return h.root
|
|||
#67 | fixed | The serializer can't serialize a list of DOMs | apoirier | apoirier |
Description |
Exception : NoApplicableMethods: (([<Element div at 2a9f0a0>, <Element div at 2a9f0d8>], 'text/html', '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">', False), {}) with this code: from nagare import presentation, ajax
class C:
pass
@presentation.render_for(C, model='async')
def render(self, h, *args):
h << h.div('foo')
h << h.div('bar')
return h.root # Returning a list of 2 DOMs
@presentation.render_for(C)
def render(self, h, comp, *args):
h << h.div(id='async_div')
h << h.a('Click me').action(ajax.Update(
render=lambda h: comp.render(h, model='async'),
component_to_update='async_div')
)
return h.root
|
Note: See TracQuery
for help on using queries.