or
DataStartField
="startDate" DataEndField="endDate"
However our data has a seperate starttime and endtime column. Is there a way to utilize the individual columns of data or does the info need to be combined?
Thanks
Mike
foreach (GridEditableItem editedItem in grid.EditItems) { Hashtable newValues = new Hashtable(); //The GridTableView will fill the values from all editable columns in the hash grid.MasterTableView.ExtractValuesFromItem(newValues, editedItem); if (true == (bool)newValues["myCheckBoxColumn"]) { // processing logic } } Public Shared rqstType As String Protected Sub RadMenu1_ItemClick(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadMenuEventArgs) Handles RadMenu1.ItemClick If RadMenu1.SelectedValue = "Add New Clients" Then rqstType = "Add" Response.Redirect("frm_Client.aspx") ElseIf RadMenu1.SelectedValue = "Edit Existing Clients" Then rqstType = "Edit" Response.Redirect("frm_Client.aspx") End If End Sub
How can I get a custom style when the row is selected in the radgrid. I would like to set the backgroundImage and backgroundcolor.