Rhosync works fine for the demo application(employee application). I am able to login and then perform CRUD operations.
However, when I create my own project, add source adapters and add few screens, and then run the application, I find undefined screen when I go from first to second screen.
# GET /Categories
def index
@categorieses = Categories.find(:all)
render
end
On debugging I find that after render, undefined screen comes out.
Has someone experienced such problem?
You can try
Also, sometimes the undefined screen can be fixed by using redirect instead of render.