Ask a Question related to ASP.NET General, Design and Development.
-
Richard Roche #1
datagrid editcommand
Is it possible to use a drop combo instead of a text box
when using the EditCommand in the Datagrid? Many table
columns are bound to 'lookup' tables, user's don't care
about the foreign keys, they want the text value. Any
advice, samples or places to read are appreciated.
Thanks.
Richard Roche Guest
-
datagrid, paging and editcommand colum
I have a datagrid in my page which has one editcommandcolumn with edit, update and cancel options. Paging is also enabled in my datagrid. When... -
EditCommand event
Does anyone know how DataGrid knows which index of an Edit button/link caused the postback so as to pass it along as an argument to EditCommand... -
EditCommand event in Datagrid question
Hi, I have a few questions about the EditCommand event in the DataGrig in asp.net. When I get to the EditCommand event in my code I need to... -
Non-displayed values in DataGrid that stay accessible in EditCommand event?
I've got an app with a DataTable that gets passed around and modified by datagrids on 3 different asp.net pages. Not all columns need to be... -
EditCommand on Nested DataGrid
I can't figure out how to use the EditCommand for the nested datagrid .. HELP PLEASE ;-) It works perfectly for the parent datagrid, but will not... -
Eric Wise #2
Re: datagrid editcommand
Read up on datagrid template fields.
"Richard Roche" <nikedog@msu.edu> wrote in message
news:024501c3578c$ee23afe0$a301280a@phx.gbl...> Is it possible to use a drop combo instead of a text box
> when using the EditCommand in the Datagrid? Many table
> columns are bound to 'lookup' tables, user's don't care
> about the foreign keys, they want the text value. Any
> advice, samples or places to read are appreciated.
>
> Thanks.
Eric Wise Guest
-
Lewis Wang [MSFT] #3
Re: datagrid editcommand
Hi Richard,
We can change a Textbox to a DropDownList in Datagrid edit mode. Please see
the following steps:
1. Change the bound column to a template column. You can easily do this in
the properties builder of the Datagrid. Select the columns tab, and then
click the column in the "Select columns"listbox, and you will find a link
"convert this column to a template column" upon "OK" button. Click the link
then click OK.
2. Right click the Datagrid and move to "Edit Template", then select the
template column in the pop up menu, delete the textbox in the
EditItemTemplate cell and add a DropDownList.
3. In the code behind, initialize the DropDownList in the
DataGrid1_ItemDataBound event:
Here is a snippet:
private void DataGrid1_ItemDataBound(object sender,
System.Web.UI.WebControls.DataGridItemEventArgs e)
{
if(e.Item.ItemType == ListItemType.EditItem)
{
Control ctrl=e.Item.FindControl("DropDownList1");
if(ctrl!=null)
{
DropDownList dropdown=(DropDownList)ctrl;
dropdown.DataSource =DataGrid1.DataSource ;
dropdown.DataTextField = "id";
dropdown.DataValueField = "value";
dropdown.DataBind ();
}
}
}
You can check these links for more information:
Top Questions about the DataGrid Web Server Control
<[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dv_vstecha[/url]
rt/html/vbtchtopquestionsaboutaspnetdatagridservercontrol. asp>
Datagrid ... Combo instead of Textbox
<http://www.dotnet247.com/247reference/msgs/5/28740.aspx>
DataGrid.EditCommand Event
<[url]http://msdn.microsoft.com/library/en-us/cpref/html/frlrfSystemWebUIWebContr[/url]
olsDataGridClassEditCommandTopic.asp>
Please let me know if you need more information, thanks.
Best Regards,
Lewis
Get Secure! - [url]www.microsoft.com/security[/url]
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
| From: "Eric Wise" <NOewise@pica.army.milSPAM>
| References: <024501c3578c$ee23afe0$a301280a@phx.gbl>
| Subject: Re: datagrid editcommand
| Date: Thu, 31 Jul 2003 15:41:30 -0400
| Lines: 13
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2720.3000
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000
| Message-ID: <uS#mfu5VDHA.656@tk2msftngp13.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: wva-guard-cn1.wva.army.mil 155.218.88.2
| Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msftn gp13.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:163902
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Read up on datagrid template fields.
|
| "Richard Roche" <nikedog@msu.edu> wrote in message
| news:024501c3578c$ee23afe0$a301280a@phx.gbl...
| > Is it possible to use a drop combo instead of a text box
| > when using the EditCommand in the Datagrid? Many table
| > columns are bound to 'lookup' tables, user's don't care
| > about the foreign keys, they want the text value. Any
| > advice, samples or places to read are appreciated.
| >
| > Thanks.
|
|
|
Lewis Wang [MSFT] Guest
-
-
Lewis Wang [MSFT] #5
Re: datagrid editcommand
I am glad to hear it. Thanks very much for participating the community.
Regards,
Lewis
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
| Content-Class: urn:content-classes:message
| From: "Richard Roche" <nikedog@msu.edu>
| Sender: "Richard Roche" <nikedog@msu.edu>
| References: <024501c3578c$ee23afe0$a301280a@phx.gbl>
<uS#mfu5VDHA.656@tk2msftngp13.phx.gbl>
<jj0jaw9VDHA.2080@cpmsftngxa06.phx.gbl>
| Subject: Re: datagrid editcommand
| Date: Fri, 1 Aug 2003 15:37:15 -0700
| Lines: 1
| Message-ID: <04a401c3587d$74f47540$a301280a@phx.gbl>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="iso-8859-1"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Thread-Index: AcNYfXT0stH/1Y/KSiKm5zsyX5piWw==
| X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| Path: cpmsftngxa06.phx.gbl
| Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:164278
| NNTP-Posting-Host: TK2MSFTNGXA11 10.40.1.163
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Thanks, I have it working :>
|
Lewis Wang [MSFT] Guest



Reply With Quote

