Questions tagged [itemcommand]

69 questions
0
votes
1 answer

Repeater ItemCommand Doesnt fire

I have tried post on same subject but didn't work. it didn't actually fire event What I want I want to fire ItemCommand event when some one click on repeater. Issue The ItemCommand is not fired. EnableViewState=true Here is by…
Ashish Akhare
  • 27
  • 1
  • 8
0
votes
2 answers

Issue with ItemCommand not being triggered for a RadGrid

I am facing a weird problem with ItemCommand. I have a radGrid which is part of a User Control. This user control is added as part of another aspx page and ItemCommand is triggered and working fine when a button from GridButtonColumn is clicked.…
Rajan Phatak
  • 524
  • 8
  • 24
0
votes
2 answers

Why Repeater ItemCommand Doesn't fire, even if i don't rebind by post back?

As title you see, I Have problem with firing itemcommand(nothing happened). before evry thing, let me tell you i take a look to all forums and stackoverflow questions like these : Repeater ItemCommand Doesn't fire ItemCommand of Repeater is not fire…
amin
  • 1,194
  • 1
  • 12
  • 20
0
votes
1 answer

ItemCommand in repeater in ASP.net

I want to click on a hyperlink in a row in the repeater that will navigate me to another page pls let me know how to use ItemCommand in the ASP.net repeater control
Shomaail
  • 493
  • 9
  • 30
0
votes
1 answer

How to keep a trace of a record inside a nested repeater?

I have the following implementation: As you can see I have a repeater (listing the Machines) and a nested repeater (listing the WindowsServices inside each Machine). For each Windows Service I can perform an action using a button. However, to…
Amokrane Chentir
  • 29,907
  • 37
  • 114
  • 158
0
votes
1 answer

Value not reflected on change in ItemCommand within RadGrid

I am having a RadGrid which contains MasterTableView and a DetailView. I am trying to change the value of Sub Total present in MasterTableView on deleting DetailView Row. I am able to get the control in Parent Table and am able to change the value.…
Rajan Phatak
  • 524
  • 8
  • 24
0
votes
1 answer

How to fire datalist_ItemCommand in page load after postback?

Is it possible to fire datalist_ItemCommand function in page load after post back. It doesn't make sense but I need to achieve this. Here is the scenerio: I have datalist control and it loaded with some person data. It has got a delete button in…
Yasin Yörük
  • 1,500
  • 7
  • 27
  • 51
0
votes
1 answer

Using telerik radgrid itemcommand with a radwindow to get initial data for InsertMode Dropdowns

I need some assistance with the telerik radgrid's itemcommand to get some information from a user adding a new record prior to opening the Grid in Insert mode. I have the itemcommand working to open a radwindow, present the user with a dropdown…
shakenb
  • 1
  • 3
0
votes
1 answer

Event from dynamic ItemTemplate not caught

I implemented a new dynamic ItemTemplate like this : private sealed class CustomItemTemplate : ITemplate { public CustomItemTemplate() {} void ITemplate.InstantiateIn(Control container) { Table ItemTable = new Table(); …
codablank1
  • 6,055
  • 5
  • 19
  • 29
0
votes
2 answers

asp.net listview how to fire itemcommand event on a ?

and thanks for reading my post. I think.. this might be pretty easy for a experienced asp.net developer which have tweaked much with listviews and such. The thing is.. I have this LinkButton which ofcourse.. have the commandname and commandargument…
Terje Nygård
  • 1,233
  • 6
  • 25
  • 48
0
votes
1 answer

Gridview outside UpdatePanel not showing

I have an ItemCommand event in a button found in a listview.
chrisdeb
  • 47
  • 10
0
votes
1 answer

How do I access the GridNoRecordsItem from the ItemCommand?

Anyone know how to get contents of a control on the Telerik RadGrid GridNoRecordsItem while you are in the ItemCommand? Why would I want to do that, you might ask. It would be useful to show selection controls when there is no data but hide the…
Stoertz
  • 7
  • 6
0
votes
1 answer

Listvew ItemCommand not fire

I have created a ListView in which I inserted a column of buttons that I would like to trigger in the ItemCommand event but, when I press the button I obtain a Page Load but nothing happens(the Event ItemCommand don't fire).
P_R
  • 356
  • 2
  • 7
  • 27
0
votes
1 answer

Strange behaviour of ASP.NET DataGrid ItemCommand event

I use a DataGrid only programmatically. Public Class MyOwnDataGrid Inherits MyBaseClass Private DataControl As New WebControls.DataGrid Public Property DataSource as DataTable = Nothing Public Sub New() AddHandler…
mburm
  • 1,417
  • 2
  • 17
  • 37
0
votes
1 answer

how to know which image button I click in datalist

I want to change imageurl which image button I click in datalist.So I must get a diffence propertie of imagebutton in datalist.My code is below;
Murat Akarsu
  • 71
  • 5
  • 14