I've one grid view which is having 4 columns --> Food Type,Dish Name, Price, Quantity.
The "Food Type" column has values "French,Chinese,Italian"
"Dish Name" column has the name of dish for respected food type for ex. for Chinese one of the dish will be noodles.
"Price column" has price of each dish
"Quantity" column has text box where costumer will insert the quantity of dish to be order.
There can be hundreds of dishes for each of 3 food type. I am displaying all the dishes of all food type in a single grid view with scrolling enabled.
The problem is that, at a time the grid view can display only 20 rows in a scrolling panel. I want to avoid the manual scrolling for getting to the dishes of particular Food type.
I want to use one DropDown list (DDL) which will have values French,Chinese,Italian (food type) for scrolling in a grid view. When user will select any of the value in DDL user should be scrolled to the related region of the grid view. Assume that the grid will have rows for French food type first(rows can be any numbers) then Chinese and lastly Italian.
Please help me to make this vertical scrolling functionality using DDL.
To visualize the grid view follow below link:
http://www.flickr.com/photos/94027637@N05/8556915219/
Thanks in advance.