all groups > asp.net webcontrols > april 2008 >
You're in the

asp.net webcontrols

group:

DataGrid hidden custom value


DataGrid hidden custom value Mike Gleason jr Couturier
4/15/2008 9:37:10 AM
asp.net webcontrols:
Hi,

I want to store the ID of the database row to each of the datagrid row...
(I don't want the ID to be visible.)

In other words, on the Row Command event, I want to be able to retreive the
database row id.

I tried with a datagrid column (visible = false) but it doesn't work

Any ideas!?

Thanks

Re: DataGrid hidden custom value Mike Gleason jr Couturier
4/15/2008 1:51:13 PM
"Mike Gleason jr Couturier" <nospam@invalidhost.com> a écrit dans le message
de news: es9WP3vnIHA.4372@TK2MSFTNGP05.phx.gbl...
[quoted text, click to view]

Hi Mike,

Maybe you can try to create an HiddenField somewhere in your page. This
field will contain the value of the database ID of the clicked row of the
datagrid...

For each button of you datagrid, you set a javascript on the OnClientClick
(or something) that will change the hidden field :
onclick="javascript:document.getElementById('hiddenfield').value =
'<rowdbid>';"

In onrowcommand, you can then access the database id of the clicked row..

That should do it

Mike

Re: DataGrid hidden custom value Mike Gleason jr Couturier
4/17/2008 2:27:16 PM

"Mike Gleason jr Couturier" <nospam@invalidhost.com> a écrit dans le message
de news: O6lONFynIHA.4708@TK2MSFTNGP02.phx.gbl...
[quoted text, click to view]

Wow thanks Mike!!

Mike

Re: DataGrid hidden custom value colin_nz via DotNetMonster.com
4/18/2008 11:19:56 AM
If you look up GridView.SelectedDataKey Property, that may be useful in your
situation

--
Message posted via DotNetMonster.com
http://www.dotnetmonster.com/Uwe/Forums.aspx/asp-net-web-controls/200804/1
Re: DataGrid hidden custom value Mike Gleason jr Couturier
4/22/2008 2:49:14 PM

"colin_nz via DotNetMonster.com" <u42378@uwe> a écrit dans le message de
news: 82dc05490b75f@uwe...
[quoted text, click to view]

Much cleaner/client compatible code... thanks!

Mike

AddThis Social Bookmark Button