I am developing a web application with Ext.Net.
How can I bind combobox from database?
This is my query:
dynamic getRegions = (
from region in db.Regions
orderby region.RgnName
select region.RgnName);
|
I am developing a web application with Ext.Net. How can I bind combobox from database? This is my query:
| ||||
|
feedback
|
|
Just out of interests sake, here's another quick Example
Cheers! | |||
|
feedback
|
|
You have to, for an
This results in a page that contains a single Ext.Net combobox that has three values displayed. You'll almost certainly need to tweak this further to get exactly what you're after (as I'm not familiar with your database schema), but it should point you in the right direction. | |||
|
feedback
|
|
| |||
|
feedback
|
Ext.Net.Storeas an intermediary, but the general principles of databinding apply to a small extent, though there are a fair few other ways to achieve the outcome with Ext.Net (including dynamic loading client side). – Rob Feb 17 '11 at 15:52