| <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="RadListBoxLeft"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="ContactDesc" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| <telerik:AjaxSetting AjaxControlID="RadListBoxRight"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="ContactDesc" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
| jQuery(document).ready(function(){ |
| var calendar = $find("<%= me.radCalSearch.ClientID %>"); |
| var dates = calendar.get_selectedDates(); |
| var date = new Date(dates[0]); |
| var dTriplet = [date.getYear(), date.getMonth()+1, date.getDate()]; |
| calendar.selectDate(dTriplet, true); |
| }); |
| jQuery(document).ready(function(){ |
| var calendar = $find("<%= me.radCalSearch.ClientID %>"); |
| //var dates = calendar.get_selectedDates(); |
| var date = new Date(jQuery("input#dnn_ctr2445_SearchInput_radCalSearch_SD").attr('value')); |
| var dTriplet = [date.getYear(), date.getMonth()+1, date.getDate()]; |
| calendar.selectDate(dTriplet, true); |
| }); |
| <telerik:radcalendar id="radCalSearch" runat="server" enablemultiselect="false" enablenavigationanimation="false" showrowheaders="false" UseColumnHeadersAsSelectors="false" UseRowHeadersAsSelectors="false" daynameformat="FirstTwoLetters" onselectionchanged="radCalSearch_SelectionChanged" AutoPostBack="true"> |
| <SpecialDays> |
| <telerik:RadCalendarDay Date="" Repeatable="Today"> |
| <ItemStyle CssClass="radCalToday_Default" /> |
| </telerik:RadCalendarDay> |
| </SpecialDays> |
| </telerik:radcalendar> |
I basically have 2 questions,
1. When I add new paragraph from the toolbar paragraph is getting created but my cursor is outside(right after) newly created paragraph. At that point its almost impossible to click inside of that paragraph and start typing. What do I need to do to place my cursor inside of the P tags?
2. When new paragraph is created I get <p> </p> in HTML markup if I switch it to HTML view and back to design it switches it to <p> </p>. What do I need to do so it does <p> </p> on the first place



Hi ,
I had a a RadTree View Control inside the GridTemplate Column. I am dynamically adding the Node to the RadTreeView in the ItemDatabound event of the RadGrid. I had three GridBound Column in the Same Grid
Whenever I expand the TreeView all the other three Bound Column shifts down to the first node of the TreeView. Is there any way to stop the movement of the BoundColumn whenever I expand the TreeView.
Thanks
Gauarv