I wonder would it be possible when a listveiw is rendered as a list of checkboxes, add an option to display Select/Deselect All checkbox at the top of the list? It could separated by a horizontal line.
E.g.
Select/Deselect All
---------------------
Checkbox 1
Checkbox 2
Checkbox 3
Checkbox 4
...
Heely Guys
Story: I have a strange error when I try to save something I got this error message ( An entity object cannot be referenced by multiple instances of IEntityChangeTracker.)
I really don’t know what that is and why is it appear, it appears only when I try to save something my insert and update is working, only when I try to save something in db from my grid
if
(
this
.annualVacationList !=
null
)
{
List<AnnualVacation> vacationToSave =
this
.annualVacationList;
IEnumerable<AnnualVacation> existing = paramUser.AnnualVacations;
foreach
(AnnualVacation toSave
in
vacationToSave)
{
AnnualVacation existingItem = existing.Where(x => x.AnnualVacationId == toSave.AnnualVacationId).SingleOrDefault();
if
(existingItem ==
null
)
{
ctx.AddToAnnualVacations(toSave);
}
else
{
existingItem.FromDate = toSave.FromDate;
existingItem.ToDate = toSave.ToDate;
existingItem.WorkingTime = toSave.WorkingTime;
existingItem.VacationDays = toSave.VacationDays;
}
}
}
ctx.SaveChanges();
}
public
void
AddToAnnualVacations(AnnualVacation annualVacation)
{
base
.AddObject(
"AnnualVacations"
, annualVacation);
}
Hi,
I need to build a photograph competition page that has a RadTabStrip which I add tabs to for each competition. Each tab contains a user control, that has a RadListView to view the member's entries and two buttons, for uploading and deleting entries.
I am having difficulty with the ItemDataBound & NeedDataSource events in the RadListView. I am not sure what to do and would appreciate it if someone could steer me in the right direction.
Kind regards,
Pierre
Hi,
I am facing an issue with our application, the checkbox inside the Telerik Radgrid in our application is not unchecking when it is clicked first time (as per the business logic the grid will be loaded as few rows checked. And this issue occurring only in this scenario). But it is unchecking on the second time clicked. This issue we got after migrating the application from .Net 3.5 to 4.0.
In our 3.5 application grid is working fine in the above said scenario. we have tried with 4.0 Telerik and Spring DLL ‘s, still we are facing the same issue.
Please suggest us on what we can do to rectify the Telerik Control issue.
<
telerik:RadComboBox
ID
=
"SearchComboBox"
runat
=
"server"
Skin
=
"Office2007"
>
<
ItemTemplate
>
<%# DataBinder.Eval(Container.DataItem,"Name") %>
</
ItemTemplate
>
</
telerik:RadComboBox
>
SearchComboBox.DataSource = dataTable;
SearchComboBox.DataTextField = "Name";
SearchComboBox.DataValueField = "ID";
SearchComboBox.DataBind();