You need to expose crud through a controller. In default.py, put this:
def data():
return dict(form=crud())Then set the grid accordingly: grid.crud_function = 'data' On Nov 15, 4:15 pm, Napoleon Moreno <[email protected]> wrote: > Good afternoon > > I am trying to use webgrid in a master- detail form. > > But i can't find the way to link the crud with the master form. > > any body knows how to do it? > > Thansk

