EditMode
="InPlace"
OnNeedDataSource="grdTime_NeedDataSource" (binding the data on server side using EntityFramework)
<Columns>
<telerik:GridDateTimeColumn DataField="StartTime" HeaderButtonType="TextButton" HeaderText="Start Time" ItemStyle-HorizontalAlign="Left" UniqueName="StartTime" ItemStyle-Width="100px" HeaderStyle-Width="100px" ReadOnly="true" DataType="System.DateTime">
</telerik:GridDateTimeColumn>
<telerik:GridDateTimeColumn DataField="EndTime" HeaderButtonType="TextButton" HeaderText="End Time" ItemStyle-HorizontalAlign="Left" UniqueName="EndTime" ItemStyle-Width="100px" HeaderStyle-Width="100px" PickerType="DateTimePicker" DataType="System.DateTime">
</telerik:GridDateTimeColumn>
</Columns>
Getting the "String was not recognized as a valid DateTime." exception on hitting edit button.
Thanks!
Hi,
I have a web service bound scheduler in which click of a navigation button (previous/next/today) does not update Scheduler's popup calendar.
Scheduler shows 10/31/2016 as selected date and on click of next button it navigates to 11/1/2016 .
Scheduler shows 11/1/2016 7:30 AM - 1/2/2016 5:00 PM, however pop up calendar does not highlight 11/1/2016 as selected date.
How can I match scheduler's selected date with highlighted date in scheduler's pop up calendar?
Regards,
Prava
Has anyone else experienced any issues with using the dialog windows (RadAlert, RadConfirm and RadPrompt). I have a project that I have been working on where I am using these dialog windows, and even though I have a RadWindowManager on the page in question I keep getting a "d is undefined" error when the following code gets called from Telerik.Web.UI.Window.RadWindowManager.js.
window.radalert=
function(e,c,a,b){var d=GetRadWindowManager();
return d.radalert(e,c,a,b);
};
Thanks,
Eric
Hi,
the project, in which I’m working, have a performance issue in IE, when the page is loading in IE11, it takes between 2.5-4.5 seconds, while in chrome it takes less than a second to load (firefox/Edge load in less than 2 seconds); Resize is also a problem, but my main concern is Loading the pages… the master page has multiple nested splitters (rad panes), I debug it and server’s time is less than a second, using dynatrace, fiddler, and dev tools, I find that the time is related to the Resizing of panes…
(See images https://screenshot.net/7o1dgcn , https://screenshot.net/jd9qgud )
I’ve looked at multiple forums (both telerik’s and otanother sources) for similar problems, and optimizing tricks… I tried some of them, but the resizing is still the main issue...
I include a link to a video showing the problem http://screencast.com/t/LQNCaVFD (ie vs chrome) with a simple project, one with one single radsplitter (RadPanelSingleSplitter.aspx) the other one with multiple nested radsplitters (RadPanelNesting.aspx, which is similar to my project), the nesting page takes at least double the time to load, and also the more html I include, the more time it takes to render (resize)…
Has anyone else have similar issues?
Best Regards,
JC
Hi,
the project, in which I’m working, have a performance issue in IE, when the page is loading in IE11, it takes between 2.5-4.5 seconds, while in chrome it takes less than a second to load (firefox/Edge load in less than 2 seconds); Resize is also a problem, but my main concern is Loading the pages… the master page has multiple nested splitters (rad panes), I debug it and server’s time is less than a second, using dynatrace, fiddler, and dev tools, I find that the time is related to the Resizing of panes…
(See images https://screenshot.net/7o1dgcn , https://screenshot.net/jd9qgud )
I’ve looked at multiple forums (both telerik’s and otanother sources) for similar problems, and optimizing tricks… I tried some of them, but the resizing is still the main issue...
I include a link to a video showing the problem http://screencast.com/t/LQNCaVFD (ie vs chrome) with a simple project, one with one single radsplitter (RadPanelSingleSplitter.aspx) the other one with multiple nested radsplitters (RadPanelNesting.aspx, which is similar to my project), the nesting page takes at least double the time to load, and also the more html I include, the more time it takes to render (resize)…
Has anyone else have similar issues?
Best Regards,
JC
function insertText(sender, eventArgs) { |
var txtPlainText = document.getElementById("<%= txtPlainText.ClientID %>"); |
var DropDownList1 = $find("<%= ddlMergeFields.ClientID %>"); |
if (document.selection) { |
txtPlainText.focus(); |
sel = document.selection.createRange(); |
sel.text = DropDownList1.get_value(); |
} |
//MOZILLA/NETSCAPE support |
else if (txtPlainText.selectionStart || txtPlainText.selectionStart == '0') { |
var startPos = txtPlainText.selectionStart; |
var endPos = txtPlainText.selectionEnd; |
txtPlainTexttxtPlainText.value = txtPlainText.value.substring(0, startPos) + DropDownList1.get_value() + |
txtPlainText.value.substring(endPos, txtPlainText.value.length); |
} |
else |
{ |
txtPlainText.value += DropDownList1.get_value(); |
} |
DropDownList1.set_value(); |
} |
<telerik:RadComboBox runat="Server" OnClientSelectedIndexChanged="insertText" ID="ddlMergeFields" Skin="Office2007"> |
<Items> |
<telerik:RadComboBoxItem Text="Merge Fields" Value="test2" /> |
<telerik:RadComboBoxItem Text="test1" Value="test1" /> |
</Items> |
</telerik:RadComboBox> |