Tagged Questions
3
votes
1answer
482 views
Bound DropDownList of “unused” items plus current row item in EditItemTemplate of GridView?
I have 2 tables with unique IDs that can be mapped to each other (one table comes from a database outside of my application but has information about the same entities I'm tracking). I want to provide ...
2
votes
3answers
2k views
DropDownList in GridView not available when Editing
I've got the setup below. When I click the 'Edit' link on the CommandField, a RowEditing event gets fired, but the row does not allow me to edit; specifically, the DropDownList does not appear.
My ...
1
vote
2answers
263 views
How can I programatically determine which control to use in my EditItemTemplate? (ASP.NET)
In my ASP.NET application, I have a GridView. For a particular field in this GridView, I've added an EditItemTemplate with a DropDownList. However, if the value of the field is "X", then I want to ...
1
vote
4answers
8k views
Gridview, DropDownList, EditItemTemplate - Error: SelectedValue which is invalid because it does not exist in the list of items
I have a Gridview which binds to an ObjectDataSource (objStudentDetails). In edit/insert mode of the Gridview one of the fields is a DropDownList that gets it's pick list options from a lookup table. ...
0
votes
1answer
31 views
Why does DropDownList in Gridview increment value?
I'm binding a ddl inside a gridview inside an EditItemTemplate. The values bind but the index is incrementing up a step. I tried cheating a little and it helped but it revealed a second problem.
...
0
votes
1answer
372 views
Access DropDownList in EditItemTemplate within GridView on GridView_RowEditing
I inserted a DropDownList into an EditItemTemplate within a GridView and I'd like to fill this DropDownList with Items based on a Value in another GridView-Column on the same row.
Let me give you an ...
0
votes
1answer
332 views
How to change values of Fields in GridView/RadGrid EditTemplate when a chkBox is checked?
When a 'Update' is clicked the row shows the Edititem mode.
I have a check box that when it is 'clicked' I want the other fields to dissapear/become read-only.
How can this be done client or server ...