Questions tagged [databinder]
73 questions
0
votes
0 answers
How do i get value of DataBinder.Eval in RowCommand without using cell index or DataKey
I want the values without using cells as they might change later and the values i want are not primary key so i cant put them in datakeys so how can i get values in RowCommand event
I am getting Null value for this
strRequestMedium =…

BKM
- 186
- 2
- 15
0
votes
1 answer
Asp Radiobutton error
I would like the Id correspond to the data in the dataitem so that I know on which radiobutton the user clicked: I write:
" runat="server" GroupName="Flights" />
But I get…

user1238784
- 2,250
- 3
- 22
- 41
0
votes
2 answers
API REST php7 symfony 3.4 - Databind json to forms
I found this: "How to process nested json with FOSRestBundle and Symfony forms" but the acepted reply was: "making an unmapped form and binding data manually using a form event"
In play, you can write your own data binder but for most formats(xml,…

Alvaro Denis Acosta
- 805
- 7
- 21
0
votes
1 answer
Can't bind Visible property
ASP.NET 2.0
As much as I try, I can't seem to bind the Visible property to data item property:
">X
I always get this error:
Cannot create an object of type 'System.Boolean'…

Paulo Morgado
- 14,111
- 3
- 31
- 59
0
votes
0 answers
MVC Razor Custom Binding for DateTime With bootstrap datepicker?
I have a PatientSearchCriteriaBinder and when runs it call a DateTimeBinder.
The first time it occurs, everything goes well. But, I don't know why. When I do in my controller the RedirectToAction is runs the Binder again and the Date format changes…

Tuga_Coder
- 1
- 4
0
votes
1 answer
DataBinder.Eval Issue
I have a some controls inside an EditItemTemplate within a RadListView control:

JohnCoderMan
- 40
- 8
0
votes
1 answer
Binding to a List using DataBinder.Eval
I have the following object:
CrossTabDataObject
{
string RowName{get;set;};
int RowId{get;set;}
List CellContents = new List ();
//Constructor..... etc.
}
I'm building a dynamic crosstab grid using GridView in asp.net…

Richard Knight
- 257
- 2
- 3
- 12
0
votes
0 answers
Spring MVC and Checkbox
I read many posts, but I didn't find a solution.
I have an object called Utente.
Utente has a field called autorizzazioniLista
public class Utente{
...
@OneToMany(mappedBy = "utente", fetch = FetchType.EAGER)
@Cascade(CascadeType.ALL)
…

MDP
- 4,177
- 21
- 63
- 119
0
votes
2 answers
0
votes
1 answer
how to telerik radgrid binding with a grid template column with the visibility of the delete icon on and off
i have telerik radgrid binding with a grid template column with the visibility of the delete icon decided by calling the code behind method ISDeleteVisible with variable from the correponding column is being passed as parameter but when i load…

subash
- 4,050
- 14
- 51
- 78
0
votes
1 answer
Why is the link set wrong in my databound repeater?
I want to show email links on my repeater (if the user has elected to have his/her email address displayed) but all I'm getting is the Databinder.Eval(Container.DataItem, "emailaddress") writing to the actual link. It isn't being parsed as it…

Ortund
- 8,095
- 18
- 71
- 139
0
votes
2 answers
Retrieve ASP.NET Eval on ImageButton Click
I have the following repeater, with some div containing information and an ImageButton. On click of the ImageButton I would like to retrieve the DataBinder.Eval which contains the "ID"

rikket
- 2,357
- 7
- 46
- 74
0
votes
2 answers
Databind inside style="width: of div
I am facing a problem like this:
I have it in HTML page:
BUT I'd like to use this 80% comming from a database.
so I'd tried this:
0
votes
1 answer
Print Empty String when DataBinder.Eval is NULL
I have the following in my repeater:
<%#DataBinder.Eval(Container.DataItem, "id")%>
<%#DataBinder.Eval(Container.DataItem, "Date",…

rikket
- 2,357
- 7
- 46
- 74
0
votes
1 answer
Pass DataBinder value in ASP.NET Repeater to database through submit button
How I can pass this value :<%#DataBinder.Eval(Container, "DataItem.QuestionsText")%> , TO THE SUBMIT CODE : database.InsertUpdate(String.Format("CALL spSurveyAnswer_Insert('{0}', '{1}','{2}');", selectValue1, txtFeedBack.Text, IneedToPassitHere…

Ismail Saifo
- 53
- 1
- 11