<div id="ctl00_cpContent_rdStartDate_wrapper" class="RadPicker RadPicker_MetroTouch" style="display:inline-block;width:160px;"> <!-- 2013.1.417.45 --><input style="visibility:hidden;display:block;float:right;margin:0 0 -1px -1px;width:1px;height:1px;overflow:hidden;border:0;padding:0;" id="ctl00_cpContent_rdStartDate" name="ctl00$cpContent$rdStartDate" type="text" class="rdfd_ radPreventDecorate" value="" title="Visually hidden input created for functionality purposes." /><link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" /><script src="http://code.jquery.com/jquery-1.9.1.min.js"></script><script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>protected void ResultsGrid_NeedDataSource(object sender, GridNeedDataSourceEventArgs e){..................... List<dynamic> contacts = new List<dynamic>(); foreach (Entity result in results.Entities) { Contact contact = result.ToEntity<Contact>(); contacts.Add( new { Id = contact.Id, Forenames = contact.FirstName, Surname = contact.FirstName, ReferenceNumber = contact.mps_ReferenceNumber, AddressLine1 = contact.Address1_Line1, AddressPostalCode = contact.Address1_PostalCode, AddressCountry = (contact.mps_address1_country == null) ? "" : contact.mps_address1_country.Name } ); } ResultsGrid.DataSource = contacts;}
Hi,
Previously we were using 2009 version of telerik controls and the javascript code like this
Now we are using 2013.1.403.35 version of telerik controls and above javascript code is cancelling the enter key press event in RadTextbox.
Please confirm this change of behaviour is due to new telerik control.s
Please confirm as soon as possible.
Regards
Vishal Sahni
Hi,
Previously we were using 2009 version of telerik controls and using javascript like this in our application.
document.getElementById(sender.get_id() + '_text');
Now we are using 2013.1.403.35 version of telerik controls and above javascript code is not working and we are using javascript like this.
document.getElementById(sender.get_id());
Please confirm this javascript change is due to new telerik controls.
Please confirm as soon as possible.
Regards
Vishal Sahni
Protected Sub btnExport_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnExport.Click RadGrid1.ExportSettings.FileName = "Export" RadGrid1.ExportSettings.ExportOnlyData = True RadGrid1.ExportSettings.IgnorePaging = True RadGrid1.ExportSettings.Csv.ColumnDelimiter = Telerik.Web.UI.GridCsvDelimiter.Tab RadGrid1.ExportSettings.Csv.RowDelimiter = Telerik.Web.UI.GridCsvDelimiter.NewLine RadGrid1.ExportSettings.Csv.EncloseDataWithQuotes = False RadGrid1.ExportSettings.Csv.FileExtension = "txt" RadGrid1.MasterTableView.ExportToCSV()End Sub
