| <runtime> |
| <dependentAssembly> |
| <assemblyIdentity name="Telerik.Web.UI" publicKeyToken="121fae78165ba3d4"/> |
| <bindingRedirect oldVersion="2008.3.1125.20" newVersion="2009.1.311.20"/> |
| </dependentAssembly> |
| </runtime> |
<script type="text/javascript">
var currentLoadingPanel = null;
var currentUpdatedControl = null;
function RequestStart(sender, args) {
debugger;
currentLoadingPanel = document.getElementById('<%= LoadingPanel.ClientID%>');
var aliastest = args.get_eventTarget();
if (aliastest == 'ctl00$contentPlaceHolder$Button1') {
currentUpdatedControl = document.getElementById('<%=pnlDetails.ClientID%>');
}
currentLoadingPanel.show(currentUpdatedControl);
}
function ResponseEnd() {
//hide the loading panel and clean up the global variables
if (currentLoadingPanel != null)
currentLoadingPanel.hide(currentUpdatedControl);
currentUpdatedControl = null;
currentLoadingPanel = null;
}
</script>
</telerik:RadCodeBlock>
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 } }