or
An unhandled exception was generated during the execution of the current
web request. Information regarding the origin and location of the
exception can be identified using the exception stack trace below.
|
|
|

<telerik:GridBoundColumn DataField="EtatIncident.nomEtatIncident" HeaderText="Etat du ticket" SortExpression="Etatduticket" UniqueName="EtatDuTicket"></telerik:GridBoundColumn>protected void RadGrid2_ItemDataBound(object sender, GridItemEventArgs e){ foreach (Telerik.Web.UI.GridDataItem dataItem in RadGrid2.MasterTableView.Items) { Label lbl = (Label)dataItem.FindControl("EtatDuTicket"); if (lbl.Text == " En cours") { lbl.ForeColor = Color.Green; } }}
Hi! I create webpart in visual 2008 and i add radscheduler control to this webpart than i deploy this web part on sharepoint 2007 and the control appers on the page. Than I want to be able to chage the views (day->week->month...) but it wan't work so I find out that NavigationCommand suppose to handel this but when i add this.scheduler.NavigationCommand += new SchedulerNavigationCommandEventHandler(RadScheduler_NavigationCommand); and i handel some action in RadScheduler_NavigationCommand nothing happens the application don't even go into this function when i click on day, week, month on the page. I don't know why and i don't have any idea how to handel it. Please help me.
