Ask a Question related to ASP.NET General, Design and Development.
-
Raphaël Désalbres #1
Datagrid help needed...
Hello, everyone,
I have built a datagrid, with update features. I have added a "Template",
and I added an option button on that template, with a OnCheckChanged="Massa"
...
I have added the following code:
Sub Massa(ByVal sender As System.Object, ByVal e As CommandEventArgs)
'Code...
End Sub
The problem is I have to know which of the option button has been clicked...
How can I do that?
Thanks,
Raphaël Désalbres
Raphaël Désalbres Guest
-
URGENT help needed on XML+DataGrid+Images+Export
Hi! Please, help me on the following task: I'm creating a product catalog (Flash + XML ) that will be used locally (from CD or on hard drive).... -
help needed regarding the datagrid and mages
Hi could some one give me some information on how to dispay images in a datagrid control retrieving images stored in a folder. -- Sriram... -
Help needed with DataGrid Client-Side Scripting
Hi, I have a custom ASP.Net DataGrid Control which has DropDownLists in each of the HeaderCells of the Grid. I'm not able to get the ClientID... -
DataGrid Help Needed
I saw this article and have implemented the code however this line <script language="C#" runat="server" src="fetchData_sql.cs" /> refering... -
onclick in a DataGrid code splice needed
Currently I have the following easy little Hyperlink column: <asp:HyperLinkColumn DataNavigateUrlField="Code"... -
David Waz... #2
Re: Datagrid help needed...
You need to bind an indicator of some type to the control.
For example, this is a "remove" button in my datagrid
<ASP:TEMPLATECOLUMN HEADERTEXT="">
<ITEMTEMPLATE>
<ASP:BUTTON ID="btnRemove" RUNAT="server"
ONCOMMAND="btnRemove_Command" COMMANDARGUMENT='<%#
DataBinder.Eval(Container.DataItem, "RefID") %>' TEXT="Remove" />
</ITEMTEMPLATE>
</ASP:TEMPLATECOLUMN>
Then I can get the CommandArgument parameter (my Record ID in this case) and
handle the event accordingly...
"Raphaël Désalbres" <raphael@desalbres.com> wrote in message
news:Obs947lQDHA.1072@TK2MSFTNGP10.phx.gbl...OnCheckChanged="Massa"> Hello, everyone,
>
> I have built a datagrid, with update features. I have added a "Template",
> and I added an option button on that template, with aclicked...> ..
>
> I have added the following code:
>
> Sub Massa(ByVal sender As System.Object, ByVal e As CommandEventArgs)
>
> 'Code...
>
> End Sub
>
>
> The problem is I have to know which of the option button has been> How can I do that?
>
> Thanks,
>
> Raphaël Désalbres
>
>
>
David Waz... Guest
-
Raphaël Désalbres #3
Re: Datagrid help needed...
Hello, I have already solved my problem with [url]www.datagridgirl.com[/url]
Thanks,
Best wishes,
Raphaël Désalbres
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Web: [url]http://www.exceldev.com[/url]
Phone: +55-67-431-54-14
E-mail: [email]raphael@desalbres.com[/email]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
"Raphaël Désalbres" <raphael@desalbres.com> escreveu na mensagem
news:Obs947lQDHA.1072@TK2MSFTNGP10.phx.gbl...OnCheckChanged="Massa"> Hello, everyone,
>
> I have built a datagrid, with update features. I have added a "Template",
> and I added an option button on that template, with aclicked...> ..
>
> I have added the following code:
>
> Sub Massa(ByVal sender As System.Object, ByVal e As CommandEventArgs)
>
> 'Code...
>
> End Sub
>
>
> The problem is I have to know which of the option button has been> How can I do that?
>
> Thanks,
>
> Raphaël Désalbres
>
>
Raphaël Désalbres Guest



Reply With Quote

