Tagged Questions

4
votes
1answer
737 views

Update DataGrid inside AJAX accordion

I have an AJAX accordion from the ajax control toolkit on a page with a datagrid inside on of the panels. I have a custom itemtemplate for the one column to create a multiline textbox when I click ...
3
votes
1answer
488 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
2answers
104 views

Debugging GridView / ObjectDataSource events

Ahoy! I am using an ASP.NET GridView control bound to an ObjectDataSource: <asp:ObjectDataSource ID="Things" runat="server" TypeName="BLL.Thing" UpdateMethod="UpdateThing" ...
2
votes
2answers
542 views

How to programmatically reach any AspxControl inside an AspXGridView's EditItemTemplate

Its very simple and i feel myself as an idiot :( I newly started to using DevX Controls. Its documentation and sample projects are SUCKS! My problem is: I have an ASPxGridView on my aspx page: ...
2
votes
1answer
2k views

Problems with AJAX CascadingDropDown and DropDownList SelectedValue in EditItemTemplate

I am having problem in EditItemTemplate of FormView. When I use such code in InsertItemTemplate everything works: <asp:DropDownList ID="Lic_PosiadaczLicencjiIDDropDownList" runat="server" ...
2
votes
2answers
9k views

asp.net how to add TemplateField programmatically for about 10 dropdownlist

This is my third time asking this question. I am not getting good answers regarding this. I wish I could get some help but I will keep asking this question because its a good question and SO experts ...
1
vote
1answer
174 views

Ajax Control Toolkit Calendar control not working in DetailsView EditItemTemplate

I have a DetailsView with a bunch of EditItemTemplates. One of them has a text box that accepts dates. In order to make the form more user friendly I wanted to add an Ajax toolkit calendar control so ...
1
vote
1answer
97 views

How to add a new item at the top of a ListView with EditItemTemplate

I have a bit of code where you can add a new field using an add button, which enable the asp:EditItemTemplate, but the thing is that this adds the field at the bottom of the list, making the user have ...
1
vote
2answers
384 views

How to AutoPostBack in EditItemTemplate?

I have a couple of DropDownLists in a FormView EditItemTemplate. One of them is a list of brokers and the other a list of broker accounts. When the Broker DropDownList is changed, I want the Accounts ...
1
vote
1answer
239 views

Javascript function on ASP.NET Listview_ItemCreated

I am trying to set some client-side properties on a set of controls in the EditItemTemplate of an ASP.Net ListView. For instance, if the EditItemTemplate contains something like this: <tr ...
1
vote
2answers
506 views

ASP.NET: Accessing a WebControl from EditItemTemplate in DataList

I am trying to access a webcontrol (a Textbox) from the EditItemTemplate of a DataList, so I can change it. When I try to do DataList.FindControl("TextboxID") it comes back with null because it ...
1
vote
2answers
273 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
1answer
928 views

How to access drop down list from EditItemTemplate of FormView

I have a formview on my aspx page containing various controls arranged using table. There is a DDL "cboClients" which i need to enable or disabled depending upon role within Edit mode. The problem ...
1
vote
1answer
494 views

ASP.NET: How do “update” a field in the <EditItemTemplate> that has a null value in the database (SQL)

I am using a FormView control. The allows me to update records in the database. However, when a database field is null I can not update the field on the form. It works fine when the field is not a ...
0
votes
1answer
212 views

How to display custom error message on EditForm Template of AspXGrid?

DevExpress AspXGrid has a cool editform template that you can use it several ui style as popup form or inline form betwwen grid rows etc.. When you unimplement Update Event of grid and if you allow ...
0
votes
2answers
126 views

What is the best way to implement “Copy to new” functionality with FormView control and content templates

I have a FormView control in an ASP.NET page. I use the InsertItemTemplate and EditItemTemplate to provide data manipulation functionality, and it is working very well. I would like to allow the user ...
0
votes
1answer
340 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 ...
0
votes
0answers
315 views

Keep getting extra added in details view

I am unable to edit Gender lookup field. I am having problem with post back edits. Every time I edit, the row YourGender keeps getting repeated. I am getting null values for GenderLookup value field. ...