Please explain in detail what you want to achieve. What is the "Products2" view? And what are you expecting to happen when a user selects some category?
Thanks,
--
Oleg Zhukov
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have 5 tables with they all have a corresponded category table.
I want to minimize the number of tables and have just one category table.
When user select product, then category and make changes on that category I want to redirect back to that corresponded table.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have a table products and it product has the own category, my table key is ProcudtID and CategoryID.
so when selecting the Task I like to be able to get the Task for that product.
at the moment we have
public void CategorySelected(NorthwindDataSet.CategoriesRow selectedCat)
{
Task.SelectedCategory = selectedCat;
Task.Navigator.Navigate(MainTask.Products);
}
but I need to have
public void CategorySelected(NorthwindDataSet.CategoriesRow selectedCat)
{
Task.SelectedCategory = selectedCat;
Task.Navigator.Navigate(MainTask.Products);
but I also need
Task.Navigator.Navigate(MainTask.Products2);
}
thanks
Hello,
Please explain in detail what you want to achieve. What is the "Products2" view? And what are you expecting to happen when a user selects some category?
Thanks,
--
Oleg Zhukov
Sorry I don't know what I was smoking on that day. Even I could not understand what I was asking.
I have 5 tables with they all have a corresponded category table.
I want to minimize the number of tables and have just one category table.
When user select product, then category and make changes on that category I want to redirect back to that corresponded table.