Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
77 views
As far as I can tell, the default behavior is to require clicking on the expand/contract area, the one with the plus or triangle icon. I think this is called the "node image".

I see in the online documentation for RAD Ajax that the topics will expand even if you click on the node text. (actual behavior, not covered in the Help topic itself)

Is there a property of the control that enables this behavior? The reason I ask is that many users instinctively click on the text, and of course the icons are quite small as a mouse target.

I have played with Ajax code behind expansion on clicking of the node, but this seems like overkill.

And I don't know enough about client-side code to script that behavior.

Tomica
Top achievements
Rank 2
 answered on 23 May 2011
4 answers
387 views
Why this wont work? any workaround?

Thanks
JL

document.getElementById('<%= rdpDataInicioContacto.ClientID %>').style.visibility = 'hidden';

OR

var dpi = document.getElementById('<%= rdpDataInicioContacto.ClientID %>');
var dpf = document.getElementById('<%= rdpDataFimContacto.ClientID %>');
dpi.style.display = "none";
dpf.style.display = "none";
Joao
Top achievements
Rank 2
 answered on 23 May 2011
8 answers
130 views
I have a page with many images. There are scroll bars on the side because there are so many images. So if you are scrolled down to the bottom and hover over a image, the radtooltip causes the page to scroll back up to the top in firefox. it works fine in ie.
Matt
Top achievements
Rank 1
 answered on 23 May 2011
11 answers
143 views
Hi, i have a treenode that is connected to to a SQL datasource and i am adding a search capability to the tree that when a user selects the PK of that node the tree loaded will be expanded to point at that node that owns that PK.

How can this be done?

Thanks!
Bryan
Top achievements
Rank 1
 answered on 23 May 2011
1 answer
63 views
This error is a shocker.

I have a RadWindow that opens up and contains a form.

On the form I have 2 RadDatePickers

Around these two RadDatePickers I have put the RadXmlHttpPanel as it is these values I'd like to modify.

<telerik:RadXmlHttpPanel runat="server" ID="ProspectRadXmlHttpPanel" EnableClientScriptEvaluation="true" OnServiceRequest="ProspectRadXmlHttpPanel_ServiceRequest">
     <tr>
         <td class="fila">Date Range</td>
         <td width="900" colspan="2">
             <span class="fila">From</span> <telerik:RadDatePicker OnSelectedDateChanged="dpProspectStartDate_SelectedDateChanged" AutoPostBack="true" ID="dpProspectStartDate" runat="server"></telerik:RadDatePicker> <span class="fila">To</span> <telerik:RadDatePicker ID="dpProspectEndDate" AutoPostBack="true" OnSelectedDateChanged="dpProspectEndDate_SelectedDateChanged" runat="server"></telerik:RadDatePicker>
         </td>
         <td></td>
     </tr>
     </telerik:RadXmlHttpPanel>


On other parts of this form I have a bunch of dropdowns and text boxes to you can set the datePickers to stuff like 'This year', or Year to date, or Today to 20 days in the future, or Today to 20 days in the past. And so on. A whole bunch of stuff.

I started this task by putting a change event on one of the dropdowns.

Here you can see my javascript that sets up my dropdown event and the SetValues method used by the RadXmlHttpPanel.

   $(document).ready(function() {
         
        $('#<%=drpProDateRangeTypeSelector.ClientID %>').change(function() {
            var val = $('#<%=drpProDateRangeTypeSelector.ClientID %>').val();
            SetValue("1", val);
        });
 
    });
 
 
function SetValue(ControlType, ControlValue) {
    var panel = $find("<%=ProspectRadXmlHttpPanel.ClientID %>");
    var s = ControlType + "_" + ControlValue;
    panel.set_value(s);
}

You can see I construct a '_' delimited value that I intend to parse back in the c# code .

The function ProspectRadXmlHttpPanel_ServiceRequest gets called as expected.

At this stage it does not do much. Just collects the value passed in.

protected void ProspectRadXmlHttpPanel_ServiceRequest(object sender, Telerik.Web.UI.RadXmlHttpPanelEventArgs e)
 {
     string s = e.Value;
}

I can confirm that the first time I use this code, it works correctly. If examine the value passed in it may equal 1_4, if I selected something with the 'value' for 4 from the dropdown.

HOWEVER!. Something strange has happened back on the RadWindow.

The row that holds my two DatePickers, has now be DUPLICATED at the top of the form. Not only are they duplicated, but they have exactly the same names as the two correct DatePickers

That however is not the worst of it.

The newly inserted (and erroneous) datepickers are written to the page inside a span that is shown below.  Sorry this is so big, but you have to see it to believe it.

Furthermore, I try to use the orignal dropdown again, my value will always be 1_0 regardless of what I select.

I'll sign off here as my 'thanks in advance' message might get lost in the mess below.

Anyone have any clue what is going on?

<span id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_ProspectRadXmlHttpPanel">
                                                 
                                                    Date Range
                                                     
                                                        <span class="fila">From</span> <input type="hidden">
<script type="text/javascript" src="/ABTCRM/ScriptResource.axd?d=HT2VRUk_nlVlGlzEL8YQIDWN2JYsvjWIUOEFN727sIj2w1NsMYIX1AIgnIqX9llB0&t=55d87db2"></script>
<script type="text/javascript" src="/ABTCRM/ScriptResource.axd?d=HT2VRUk_nlVlGlzEL8YQIDWN2JYsvjWIUOEFN727sIhkBMVIENnsYMQfPCxKa0jlCzfsuWMhubNpjk5HlACjww2&t=55d87db2"></script>
<script type="text/javascript" src="/ABTCRM/ScriptResource.axd?d=HT2VRUk_nlVlGlzEL8YQIDWN2JYsvjWIUOEFN727sIiqIAdhgQA7Z8ZuiYiecMJ-jISzvBZCWx8qdcyt5pVTLA2&t=55d87db2"></script>
<div style="display:-moz-inline-stack;width:150px;height:20px;" class="RadPicker RadPicker_Default" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_wrapper">
    <input type="text" value="" class="rdfd_" name="ctl00$PageContent$rwAdvancedSearchForm$C$tcAdvancedSearch$tpProspect$dpProspectStartDate" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate" style="visibility:hidden;display:block;float:right;margin:0 0 -1px -1px;width:1px;height:1px;overflow:hidden;border:0;padding:0;"><table cellspacing="0" style="width:150px;" class="rcTable">
        <tbody><tr>
            <td style="width:100%;" class="rcInputCell"><input type="hidden">
<script type="text/javascript" src="/ABTCRM/ScriptResource.axd?d=HT2VRUk_nlVlGlzEL8YQIDWN2JYsvjWIUOEFN727sIj2w1NsMYIX1AIgnIqX9llB0&t=55d87db2"></script>
<script type="text/javascript" src="/ABTCRM/ScriptResource.axd?d=HT2VRUk_nlVlGlzEL8YQIO4gLi_-9g4A8QiHlb_FEbTgRw-Vc_2arO05EfO-cVwI4mn22zbsyM73HrNCgyUeaA2&t=55d87db2"></script>
<script type="text/javascript" src="/ABTCRM/ScriptResource.axd?d=HT2VRUk_nlVlGlzEL8YQIO4gLi_-9g4A8QiHlb_FEbTWG_068kwXbEdx_w5xfGG0flpbPqP51KP14EWb_8woFsAY_sUAFgg47LhocAjVEk41&t=55d87db2"></script>
            <span style="display:block;" class="RadInput RadInput_Default" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_dateInput_wrapper"><input type="text" style="width:100%;" class="riTextBox riEnabled" name="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_dateInput_text" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_dateInput_text"><input type="text" value="" class="rdfd_" name="ctl00$PageContent$rwAdvancedSearchForm$C$tcAdvancedSearch$tpProspect$dpProspectStartDate$dateInput" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_dateInput" style="visibility:hidden;float:right;margin:-18px 0 0 -1px;width:1px;height:1px;overflow:hidden;border:0;padding:0;"><input type="hidden" name="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_dateInput_ClientState" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_dateInput_ClientState"><link href="/ABTCRM/WebResource.axd?d=LMScigp5j5G8r_26sEorfDRigt_lDbsqhvr70CHJTyEeINr5DxaZgyQ6DcoGpWuF0&t=634307904980000000" rel="stylesheet" type="text/css" class="Telerik_stylesheet"><link href="/ABTCRM/WebResource.axd?d=LMScigp5j5G8r_26sEorfDRigt_lDbsqhvr70CHJTyHdW0DbozamMA72pGw3rkFRHiJfvCXRaWBDQG3EForYOw2&t=634307904980000000" rel="stylesheet" type="text/css" class="Telerik_stylesheet"></span><script type="text/javascript">
//<![CDATA[
    Sys.Application.add_init(function(){$create(Telerik.Web.UI.RadDateInput, {"_focused":false,"_originalValue":"","_postBackEventReferenceScript":"__doPostBack(\u0027ctl00$PageContent$rwAdvancedSearchForm$C$tcAdvancedSearch$tpProspect$dpProspectStartDate\u0027,\u0027\u0027)","_skin":"Default","autoPostBack":true,"clientStateFieldID":"ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_dateInput_ClientState","dateFormat":"d/MM/yyyy","dateFormatInfo":{"DayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"MonthNames":["January","February","March","April","May","June","July","August","September","October","November","December",""],"AbbreviatedDayNames":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"AbbreviatedMonthNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"AMDesignator":"AM","PMDesignator":"PM","DateSeparator":"/","TimeSeparator":":","FirstDayOfWeek":1,"DateSlots":{"Month":1,"Year":2,"Day":0},"ShortYearCenturyEnd":2029,"TimeInputOnly":false},"displayDateFormat":"d/MM/yyyy","enabled":true,"incrementSettings":{InterceptArrowKeys:true,InterceptMouseWheel:true,Step:1},"styles":{HoveredStyle: ["width:100%;", "riTextBox riHover"],InvalidStyle: ["width:100%;", "riTextBox riError"],DisabledStyle: ["width:100%;", "riTextBox riDisabled"],FocusedStyle: ["width:100%;", "riTextBox riFocused"],EmptyMessageStyle: ["width:100%;", "riTextBox riEmpty"],ReadOnlyStyle: ["width:100%;", "riTextBox riRead"],EnabledStyle: ["width:100%;", "riTextBox riEnabled"]}}, null, null, $get("ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_dateInput"));});
//]]>
</script>
            </td><td><a class="rcCalPopup" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_popupButton" href="#" title="Open the calendar popup.">Open the calendar popup.</a><div style="display: none" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_wrapper"><table cellspacing="0" border="0" class="RadCalendar RadCalendar_Default" summary="Calendar" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar">
                <thead>
                    <tr>
                        <td class="rcTitlebar"><table cellspacing="0" border="0" summary="title and navigation">
                            <tbody><tr>
                                <td><a href="#" title="<<" class="rcFastPrev" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_FNP"><<</a></td><td><a href="#" title="<" class="rcPrev" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_NP"><</a></td><td class="rcTitle" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_Title">May 2011</td><td><a href="#" title=">" class="rcNext" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_NN">></a></td><td><a href="#" title=">>" class="rcFastNext" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_FNN">>></a></td>
                            </tr>
                        </tbody></table></td>
                    </tr>
                </thead><tbody>
    <tr>
        <td class="rcMain"><table cellspacing="0" border="0" summary="May 2011" class="rcMainTable" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_Top">
    <thead>
        <tr class="rcWeek">
            <th class="rcViewSel"> </th><th scope="col" abbr="Mon" title="Monday" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_Top_cs_1">M</th><th scope="col" abbr="Tue" title="Tuesday" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_Top_cs_2">T</th><th scope="col" abbr="Wed" title="Wednesday" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_Top_cs_3">W</th><th scope="col" abbr="Thu" title="Thursday" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_Top_cs_4">T</th><th scope="col" abbr="Fri" title="Friday" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_Top_cs_5">F</th><th scope="col" abbr="Sat" title="Saturday" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_Top_cs_6">S</th><th scope="col" abbr="Sun" title="Sunday" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_Top_cs_7">S</th>
        </tr>
    </thead><tbody>
        <tr class="rcRow">
            <th scope="row" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_Top_rs_1">18</th><td title="Monday, April 25, 2011" class="rcOtherMonth"><a href="#">25</a></td><td title="Tuesday, April 26, 2011" class="rcOtherMonth"><a href="#">26</a></td><td title="Wednesday, April 27, 2011" class="rcOtherMonth"><a href="#">27</a></td><td title="Thursday, April 28, 2011" class="rcOtherMonth"><a href="#">28</a></td><td title="Friday, April 29, 2011" class="rcOtherMonth"><a href="#">29</a></td><td title="Saturday, April 30, 2011" class="rcOtherMonth"><a href="#">30</a></td><td title="Sunday, May 01, 2011" class="rcWeekend"><a href="#">1</a></td>
        </tr><tr class="rcRow">
            <th scope="row" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_Top_rs_2">19</th><td title="Monday, May 02, 2011"><a href="#">2</a></td><td title="Tuesday, May 03, 2011"><a href="#">3</a></td><td title="Wednesday, May 04, 2011"><a href="#">4</a></td><td title="Thursday, May 05, 2011"><a href="#">5</a></td><td title="Friday, May 06, 2011"><a href="#">6</a></td><td title="Saturday, May 07, 2011" class="rcWeekend"><a href="#">7</a></td><td title="Sunday, May 08, 2011" class="rcWeekend"><a href="#">8</a></td>
        </tr><tr class="rcRow">
            <th scope="row" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_Top_rs_3">20</th><td title="Monday, May 09, 2011"><a href="#">9</a></td><td title="Tuesday, May 10, 2011"><a href="#">10</a></td><td title="Wednesday, May 11, 2011"><a href="#">11</a></td><td title="Thursday, May 12, 2011"><a href="#">12</a></td><td title="Friday, May 13, 2011"><a href="#">13</a></td><td title="Saturday, May 14, 2011" class="rcWeekend"><a href="#">14</a></td><td title="Sunday, May 15, 2011" class="rcWeekend"><a href="#">15</a></td>
        </tr><tr class="rcRow">
            <th scope="row" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_Top_rs_4">21</th><td title="Monday, May 16, 2011"><a href="#">16</a></td><td title="Tuesday, May 17, 2011"><a href="#">17</a></td><td title="Wednesday, May 18, 2011"><a href="#">18</a></td><td title="Thursday, May 19, 2011"><a href="#">19</a></td><td title="Friday, May 20, 2011"><a href="#">20</a></td><td title="Saturday, May 21, 2011" class="rcWeekend"><a href="#">21</a></td><td title="Sunday, May 22, 2011" class="rcWeekend"><a href="#">22</a></td>
        </tr><tr class="rcRow">
            <th scope="row" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_Top_rs_5">22</th><td title="Monday, May 23, 2011"><a href="#">23</a></td><td title="Tuesday, May 24, 2011"><a href="#">24</a></td><td title="Wednesday, May 25, 2011"><a href="#">25</a></td><td title="Thursday, May 26, 2011"><a href="#">26</a></td><td title="Friday, May 27, 2011"><a href="#">27</a></td><td title="Saturday, May 28, 2011" class="rcWeekend"><a href="#">28</a></td><td title="Sunday, May 29, 2011" class="rcWeekend"><a href="#">29</a></td>
        </tr><tr class="rcRow">
            <th scope="row" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_Top_rs_6">23</th><td title="Monday, May 30, 2011"><a href="#">30</a></td><td title="Tuesday, May 31, 2011"><a href="#">31</a></td><td title="Wednesday, June 01, 2011" class="rcOtherMonth"><a href="#">1</a></td><td title="Thursday, June 02, 2011" class="rcOtherMonth"><a href="#">2</a></td><td title="Friday, June 03, 2011" class="rcOtherMonth"><a href="#">3</a></td><td title="Saturday, June 04, 2011" class="rcOtherMonth"><a href="#">4</a></td><td title="Sunday, June 05, 2011" class="rcOtherMonth"><a href="#">5</a></td>
        </tr>
    </tbody>
</table></td>
    </tr>
</tbody>
            </table><input type="hidden" value="[]" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_SD" name="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_SD"><input type="hidden" value="[[1980,1,1],[2099,12,30],[2011,5,20]]" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_AD" name="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_AD"></div><input type="hidden">
<script type="text/javascript" src="/ABTCRM/ScriptResource.axd?d=HT2VRUk_nlVlGlzEL8YQIDWN2JYsvjWIUOEFN727sIj2w1NsMYIX1AIgnIqX9llB0&t=55d87db2"></script>
<script type="text/javascript" src="/ABTCRM/ScriptResource.axd?d=HT2VRUk_nlVlGlzEL8YQIDWN2JYsvjWIUOEFN727sIhkBMVIENnsYMQfPCxKa0jlCzfsuWMhubNpjk5HlACjww2&t=55d87db2"></script>
<script type="text/javascript" src="/ABTCRM/ScriptResource.axd?d=HT2VRUk_nlVlGlzEL8YQIDWN2JYsvjWIUOEFN727sIjwKPiXOkoIvXiTArqxudTOdhGy7d1n1UAifseITOgzMw2&t=55d87db2"></script>
<script type="text/javascript" src="/ABTCRM/ScriptResource.axd?d=HT2VRUk_nlVlGlzEL8YQIDWN2JYsvjWIUOEFN727sIjwKPiXOkoIvXiTArqxudTOuk6w5Kh8Pjhe0EfmUQLXHrkAqVh47i8cvsizFq-jm4I1&t=55d87db2"></script>
            <link href="/ABTCRM/WebResource.axd?d=LMScigp5j5G8r_26sEorfDRigt_lDbsqhvr70CHJTyEbX8EoWQHP52cuq6h5-DjYfZ5zFxLafKpK2Ac_2n6_oQ2&t=634307904980000000" rel="stylesheet" type="text/css" class="Telerik_stylesheet"><link href="/ABTCRM/WebResource.axd?d=LMScigp5j5G8r_26sEorfDRigt_lDbsqhvr70CHJTyGhJ3qDSFej2ExWXhDeHF3LnIuZf80pVzW8IKuOGJy2tzSU-mVS3UKPEKt81EOOpzU1&t=634307904980000000" rel="stylesheet" type="text/css" class="Telerik_stylesheet"><script type="text/javascript">
//<![CDATA[
    Sys.Application.add_init(function(){$create(Telerik.Web.UI.RadCalendar, {"_DayRenderChangedDays":{},"_FormatInfoArray":[["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],["January","February","March","April","May","June","July","August","September","October","November","December",""],["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"dddd, d MMMM yyyy h:mm:ss tt","dddd, d MMMM yyyy","h:mm:ss tt","dd MMMM","ddd, dd MMM yyyy HH\u0027:\u0027mm\u0027:\u0027ss \u0027GMT\u0027","d/MM/yyyy","h:mm tt","yyyy\u0027-\u0027MM\u0027-\u0027dd\u0027T\u0027HH\u0027:\u0027mm\u0027:\u0027ss","yyyy\u0027-\u0027MM\u0027-\u0027dd HH\u0027:\u0027mm\u0027:\u0027ss\u0027Z\u0027","MMMM yyyy","AM","PM","/",":",1],"_ViewRepeatableDays":{},"_ViewsHash":{"ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_Top" : [[2011,5,1], 1]},"_calendarWeekRule":0,"_culture":"en-AU","_enableKeyboardNavigation":false,"_enableViewSelector":false,"_firstDayOfWeek":7,"_postBackCall":"__doPostBack(\u0027ctl00$PageContent$rwAdvancedSearchForm$C$tcAdvancedSearch$tpProspect$dpProspectStartDate$calendar\u0027,\u0027@@\u0027)","_rangeSelectionMode":0,"clientStateFieldID":"ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar_ClientState","enableMultiSelect":false,"enabled":true,"monthYearNavigationSettings":["Today","OK","Cancel","Date is out of range.","False","True","300","1","300","1"],"skin":"Default","specialDaysArray":[],"stylesHash":{"DayStyle": ["", ""],"CalendarTableStyle": ["", "rcMainTable"],"OtherMonthDayStyle": ["", "rcOtherMonth"],"TitleStyle": ["", ""],"SelectedDayStyle": ["", "rcSelected"],"SelectorStyle": ["", ""],"DisabledDayStyle": ["", "rcDisabled"],"OutOfRangeDayStyle": ["", "rcOutOfRange"],"WeekendDayStyle": ["", "rcWeekend"],"DayOverStyle": ["", "rcHover"],"FastNavigationStyle": ["", "RadCalendarMonthView RadCalendarMonthView_Default"],"ViewSelectorStyle": ["", "rcViewSel"]},"useColumnHeadersAsSelectors":false,"useRowHeadersAsSelectors":false}, null, null, $get("ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar"));});
//]]>
</script>
            </td>
        </tr>
    </tbody></table><input type="hidden" name="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_ClientState" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_ClientState">
</div><script type="text/javascript">
//<![CDATA[
    Sys.Application.add_init(function(){$create(Telerik.Web.UI.RadDatePicker, {"_PopupButtonSettings":{ ResolvedImageUrl : "", ResolvedHoverImageUrl : ""},"_animationSettings":{ShowAnimationDuration:300,ShowAnimationType:1,HideAnimationDuration:0,HideAnimationType:1},"_popupControlID":"ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_popupButton","clientStateFieldID":"ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_ClientState","focusedDate":"2011-05-20-00-00-00"}, null, {"calendar":"ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_calendar","dateInput":"ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate_dateInput"}, $get("ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectStartDate"));});
//]]>
</script>
 <span class="fila">To</span> <input type="hidden">
<script type="text/javascript" src="/ABTCRM/ScriptResource.axd?d=HT2VRUk_nlVlGlzEL8YQIDWN2JYsvjWIUOEFN727sIj2w1NsMYIX1AIgnIqX9llB0&t=55d87db2"></script>
<script type="text/javascript" src="/ABTCRM/ScriptResource.axd?d=HT2VRUk_nlVlGlzEL8YQIDWN2JYsvjWIUOEFN727sIhkBMVIENnsYMQfPCxKa0jlCzfsuWMhubNpjk5HlACjww2&t=55d87db2"></script>
<script type="text/javascript" src="/ABTCRM/ScriptResource.axd?d=HT2VRUk_nlVlGlzEL8YQIDWN2JYsvjWIUOEFN727sIiqIAdhgQA7Z8ZuiYiecMJ-jISzvBZCWx8qdcyt5pVTLA2&t=55d87db2"></script>
<div style="display:-moz-inline-stack;width:150px;height:20px;" class="RadPicker RadPicker_Default" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_wrapper">
    <input type="text" value="" class="rdfd_" name="ctl00$PageContent$rwAdvancedSearchForm$C$tcAdvancedSearch$tpProspect$dpProspectEndDate" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate" style="visibility:hidden;display:block;float:right;margin:0 0 -1px -1px;width:1px;height:1px;overflow:hidden;border:0;padding:0;"><table cellspacing="0" style="width:150px;" class="rcTable">
        <tbody><tr>
            <td style="width:100%;" class="rcInputCell"><input type="hidden">
<script type="text/javascript" src="/ABTCRM/ScriptResource.axd?d=HT2VRUk_nlVlGlzEL8YQIDWN2JYsvjWIUOEFN727sIj2w1NsMYIX1AIgnIqX9llB0&t=55d87db2"></script>
<script type="text/javascript" src="/ABTCRM/ScriptResource.axd?d=HT2VRUk_nlVlGlzEL8YQIO4gLi_-9g4A8QiHlb_FEbTgRw-Vc_2arO05EfO-cVwI4mn22zbsyM73HrNCgyUeaA2&t=55d87db2"></script>
<script type="text/javascript" src="/ABTCRM/ScriptResource.axd?d=HT2VRUk_nlVlGlzEL8YQIO4gLi_-9g4A8QiHlb_FEbTWG_068kwXbEdx_w5xfGG0flpbPqP51KP14EWb_8woFsAY_sUAFgg47LhocAjVEk41&t=55d87db2"></script>
            <span style="display:block;" class="RadInput RadInput_Default" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_dateInput_wrapper"><input type="text" style="width:100%;" class="riTextBox riEnabled" name="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_dateInput_text" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_dateInput_text"><input type="text" value="" class="rdfd_" name="ctl00$PageContent$rwAdvancedSearchForm$C$tcAdvancedSearch$tpProspect$dpProspectEndDate$dateInput" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_dateInput" style="visibility:hidden;float:right;margin:-18px 0 0 -1px;width:1px;height:1px;overflow:hidden;border:0;padding:0;"><input type="hidden" name="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_dateInput_ClientState" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_dateInput_ClientState"><link href="/ABTCRM/WebResource.axd?d=LMScigp5j5G8r_26sEorfDRigt_lDbsqhvr70CHJTyEeINr5DxaZgyQ6DcoGpWuF0&t=634307904980000000" rel="stylesheet" type="text/css" class="Telerik_stylesheet"><link href="/ABTCRM/WebResource.axd?d=LMScigp5j5G8r_26sEorfDRigt_lDbsqhvr70CHJTyHdW0DbozamMA72pGw3rkFRHiJfvCXRaWBDQG3EForYOw2&t=634307904980000000" rel="stylesheet" type="text/css" class="Telerik_stylesheet"></span><script type="text/javascript">
//<![CDATA[
    Sys.Application.add_init(function(){$create(Telerik.Web.UI.RadDateInput, {"_focused":false,"_originalValue":"","_postBackEventReferenceScript":"__doPostBack(\u0027ctl00$PageContent$rwAdvancedSearchForm$C$tcAdvancedSearch$tpProspect$dpProspectEndDate\u0027,\u0027\u0027)","_skin":"Default","autoPostBack":true,"clientStateFieldID":"ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_dateInput_ClientState","dateFormat":"d/MM/yyyy","dateFormatInfo":{"DayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"MonthNames":["January","February","March","April","May","June","July","August","September","October","November","December",""],"AbbreviatedDayNames":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"AbbreviatedMonthNames":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"AMDesignator":"AM","PMDesignator":"PM","DateSeparator":"/","TimeSeparator":":","FirstDayOfWeek":1,"DateSlots":{"Month":1,"Year":2,"Day":0},"ShortYearCenturyEnd":2029,"TimeInputOnly":false},"displayDateFormat":"d/MM/yyyy","enabled":true,"incrementSettings":{InterceptArrowKeys:true,InterceptMouseWheel:true,Step:1},"styles":{HoveredStyle: ["width:100%;", "riTextBox riHover"],InvalidStyle: ["width:100%;", "riTextBox riError"],DisabledStyle: ["width:100%;", "riTextBox riDisabled"],FocusedStyle: ["width:100%;", "riTextBox riFocused"],EmptyMessageStyle: ["width:100%;", "riTextBox riEmpty"],ReadOnlyStyle: ["width:100%;", "riTextBox riRead"],EnabledStyle: ["width:100%;", "riTextBox riEnabled"]}}, null, null, $get("ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_dateInput"));});
//]]>
</script>
            </td><td><a class="rcCalPopup" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_popupButton" href="#" title="Open the calendar popup.">Open the calendar popup.</a><div style="display: none" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_wrapper"><table cellspacing="0" border="0" class="RadCalendar RadCalendar_Default" summary="Calendar" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar">
                <thead>
                    <tr>
                        <td class="rcTitlebar"><table cellspacing="0" border="0" summary="title and navigation">
                            <tbody><tr>
                                <td><a href="#" title="<<" class="rcFastPrev" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_FNP"><<</a></td><td><a href="#" title="<" class="rcPrev" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_NP"><</a></td><td class="rcTitle" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_Title">May 2011</td><td><a href="#" title=">" class="rcNext" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_NN">></a></td><td><a href="#" title=">>" class="rcFastNext" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_FNN">>></a></td>
                            </tr>
                        </tbody></table></td>
                    </tr>
                </thead><tbody>
    <tr>
        <td class="rcMain"><table cellspacing="0" border="0" summary="May 2011" class="rcMainTable" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_Top">
    <thead>
        <tr class="rcWeek">
            <th class="rcViewSel"> </th><th scope="col" abbr="Mon" title="Monday" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_Top_cs_1">M</th><th scope="col" abbr="Tue" title="Tuesday" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_Top_cs_2">T</th><th scope="col" abbr="Wed" title="Wednesday" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_Top_cs_3">W</th><th scope="col" abbr="Thu" title="Thursday" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_Top_cs_4">T</th><th scope="col" abbr="Fri" title="Friday" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_Top_cs_5">F</th><th scope="col" abbr="Sat" title="Saturday" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_Top_cs_6">S</th><th scope="col" abbr="Sun" title="Sunday" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_Top_cs_7">S</th>
        </tr>
    </thead><tbody>
        <tr class="rcRow">
            <th scope="row" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_Top_rs_1">18</th><td title="Monday, April 25, 2011" class="rcOtherMonth"><a href="#">25</a></td><td title="Tuesday, April 26, 2011" class="rcOtherMonth"><a href="#">26</a></td><td title="Wednesday, April 27, 2011" class="rcOtherMonth"><a href="#">27</a></td><td title="Thursday, April 28, 2011" class="rcOtherMonth"><a href="#">28</a></td><td title="Friday, April 29, 2011" class="rcOtherMonth"><a href="#">29</a></td><td title="Saturday, April 30, 2011" class="rcOtherMonth"><a href="#">30</a></td><td title="Sunday, May 01, 2011" class="rcWeekend"><a href="#">1</a></td>
        </tr><tr class="rcRow">
            <th scope="row" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_Top_rs_2">19</th><td title="Monday, May 02, 2011"><a href="#">2</a></td><td title="Tuesday, May 03, 2011"><a href="#">3</a></td><td title="Wednesday, May 04, 2011"><a href="#">4</a></td><td title="Thursday, May 05, 2011"><a href="#">5</a></td><td title="Friday, May 06, 2011"><a href="#">6</a></td><td title="Saturday, May 07, 2011" class="rcWeekend"><a href="#">7</a></td><td title="Sunday, May 08, 2011" class="rcWeekend"><a href="#">8</a></td>
        </tr><tr class="rcRow">
            <th scope="row" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_Top_rs_3">20</th><td title="Monday, May 09, 2011"><a href="#">9</a></td><td title="Tuesday, May 10, 2011"><a href="#">10</a></td><td title="Wednesday, May 11, 2011"><a href="#">11</a></td><td title="Thursday, May 12, 2011"><a href="#">12</a></td><td title="Friday, May 13, 2011"><a href="#">13</a></td><td title="Saturday, May 14, 2011" class="rcWeekend"><a href="#">14</a></td><td title="Sunday, May 15, 2011" class="rcWeekend"><a href="#">15</a></td>
        </tr><tr class="rcRow">
            <th scope="row" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_Top_rs_4">21</th><td title="Monday, May 16, 2011"><a href="#">16</a></td><td title="Tuesday, May 17, 2011"><a href="#">17</a></td><td title="Wednesday, May 18, 2011"><a href="#">18</a></td><td title="Thursday, May 19, 2011"><a href="#">19</a></td><td title="Friday, May 20, 2011"><a href="#">20</a></td><td title="Saturday, May 21, 2011" class="rcWeekend"><a href="#">21</a></td><td title="Sunday, May 22, 2011" class="rcWeekend"><a href="#">22</a></td>
        </tr><tr class="rcRow">
            <th scope="row" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_Top_rs_5">22</th><td title="Monday, May 23, 2011"><a href="#">23</a></td><td title="Tuesday, May 24, 2011"><a href="#">24</a></td><td title="Wednesday, May 25, 2011"><a href="#">25</a></td><td title="Thursday, May 26, 2011"><a href="#">26</a></td><td title="Friday, May 27, 2011"><a href="#">27</a></td><td title="Saturday, May 28, 2011" class="rcWeekend"><a href="#">28</a></td><td title="Sunday, May 29, 2011" class="rcWeekend"><a href="#">29</a></td>
        </tr><tr class="rcRow">
            <th scope="row" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_Top_rs_6">23</th><td title="Monday, May 30, 2011"><a href="#">30</a></td><td title="Tuesday, May 31, 2011"><a href="#">31</a></td><td title="Wednesday, June 01, 2011" class="rcOtherMonth"><a href="#">1</a></td><td title="Thursday, June 02, 2011" class="rcOtherMonth"><a href="#">2</a></td><td title="Friday, June 03, 2011" class="rcOtherMonth"><a href="#">3</a></td><td title="Saturday, June 04, 2011" class="rcOtherMonth"><a href="#">4</a></td><td title="Sunday, June 05, 2011" class="rcOtherMonth"><a href="#">5</a></td>
        </tr>
    </tbody>
</table></td>
    </tr>
</tbody>
            </table><input type="hidden" value="[]" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_SD" name="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_SD"><input type="hidden" value="[[1980,1,1],[2099,12,30],[2011,5,20]]" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_AD" name="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_AD"></div><input type="hidden">
<script type="text/javascript" src="/ABTCRM/ScriptResource.axd?d=HT2VRUk_nlVlGlzEL8YQIDWN2JYsvjWIUOEFN727sIj2w1NsMYIX1AIgnIqX9llB0&t=55d87db2"></script>
<script type="text/javascript" src="/ABTCRM/ScriptResource.axd?d=HT2VRUk_nlVlGlzEL8YQIDWN2JYsvjWIUOEFN727sIhkBMVIENnsYMQfPCxKa0jlCzfsuWMhubNpjk5HlACjww2&t=55d87db2"></script>
<script type="text/javascript" src="/ABTCRM/ScriptResource.axd?d=HT2VRUk_nlVlGlzEL8YQIDWN2JYsvjWIUOEFN727sIjwKPiXOkoIvXiTArqxudTOdhGy7d1n1UAifseITOgzMw2&t=55d87db2"></script>
<script type="text/javascript" src="/ABTCRM/ScriptResource.axd?d=HT2VRUk_nlVlGlzEL8YQIDWN2JYsvjWIUOEFN727sIjwKPiXOkoIvXiTArqxudTOuk6w5Kh8Pjhe0EfmUQLXHrkAqVh47i8cvsizFq-jm4I1&t=55d87db2"></script>
            <link href="/ABTCRM/WebResource.axd?d=LMScigp5j5G8r_26sEorfDRigt_lDbsqhvr70CHJTyEbX8EoWQHP52cuq6h5-DjYfZ5zFxLafKpK2Ac_2n6_oQ2&t=634307904980000000" rel="stylesheet" type="text/css" class="Telerik_stylesheet"><link href="/ABTCRM/WebResource.axd?d=LMScigp5j5G8r_26sEorfDRigt_lDbsqhvr70CHJTyGhJ3qDSFej2ExWXhDeHF3LnIuZf80pVzW8IKuOGJy2tzSU-mVS3UKPEKt81EOOpzU1&t=634307904980000000" rel="stylesheet" type="text/css" class="Telerik_stylesheet"><script type="text/javascript">
//<![CDATA[
    Sys.Application.add_init(function(){$create(Telerik.Web.UI.RadCalendar, {"_DayRenderChangedDays":{},"_FormatInfoArray":[["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],["January","February","March","April","May","June","July","August","September","October","November","December",""],["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec",""],"dddd, d MMMM yyyy h:mm:ss tt","dddd, d MMMM yyyy","h:mm:ss tt","dd MMMM","ddd, dd MMM yyyy HH\u0027:\u0027mm\u0027:\u0027ss \u0027GMT\u0027","d/MM/yyyy","h:mm tt","yyyy\u0027-\u0027MM\u0027-\u0027dd\u0027T\u0027HH\u0027:\u0027mm\u0027:\u0027ss","yyyy\u0027-\u0027MM\u0027-\u0027dd HH\u0027:\u0027mm\u0027:\u0027ss\u0027Z\u0027","MMMM yyyy","AM","PM","/",":",1],"_ViewRepeatableDays":{},"_ViewsHash":{"ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_Top" : [[2011,5,1], 1]},"_calendarWeekRule":0,"_culture":"en-AU","_enableKeyboardNavigation":false,"_enableViewSelector":false,"_firstDayOfWeek":7,"_postBackCall":"__doPostBack(\u0027ctl00$PageContent$rwAdvancedSearchForm$C$tcAdvancedSearch$tpProspect$dpProspectEndDate$calendar\u0027,\u0027@@\u0027)","_rangeSelectionMode":0,"clientStateFieldID":"ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar_ClientState","enableMultiSelect":false,"enabled":true,"monthYearNavigationSettings":["Today","OK","Cancel","Date is out of range.","False","True","300","1","300","1"],"skin":"Default","specialDaysArray":[],"stylesHash":{"DayStyle": ["", ""],"CalendarTableStyle": ["", "rcMainTable"],"OtherMonthDayStyle": ["", "rcOtherMonth"],"TitleStyle": ["", ""],"SelectedDayStyle": ["", "rcSelected"],"SelectorStyle": ["", ""],"DisabledDayStyle": ["", "rcDisabled"],"OutOfRangeDayStyle": ["", "rcOutOfRange"],"WeekendDayStyle": ["", "rcWeekend"],"DayOverStyle": ["", "rcHover"],"FastNavigationStyle": ["", "RadCalendarMonthView RadCalendarMonthView_Default"],"ViewSelectorStyle": ["", "rcViewSel"]},"useColumnHeadersAsSelectors":false,"useRowHeadersAsSelectors":false}, null, null, $get("ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar"));});
//]]>
</script>
            </td>
        </tr>
    </tbody></table><input type="hidden" name="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_ClientState" id="ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_ClientState">
</div><script type="text/javascript">
//<![CDATA[
    Sys.Application.add_init(function(){$create(Telerik.Web.UI.RadDatePicker, {"_PopupButtonSettings":{ ResolvedImageUrl : "", ResolvedHoverImageUrl : ""},"_animationSettings":{ShowAnimationDuration:300,ShowAnimationType:1,HideAnimationDuration:0,HideAnimationType:1},"_popupControlID":"ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_popupButton","clientStateFieldID":"ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_ClientState","focusedDate":"2011-05-20-00-00-00"}, null, {"calendar":"ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_calendar","dateInput":"ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate_dateInput"}, $get("ctl00_PageContent_rwAdvancedSearchForm_C_tcAdvancedSearch_tpProspect_dpProspectEndDate"));});
//]]>
</script>
 
                                                     
                                                     
                                                 
                                                </span>






 

Pero
Telerik team
 answered on 23 May 2011
7 answers
227 views
Hi,
I have an issue very similar to the one discussed in  RadSlider inside initially hidden elements (e.g. RadToolTip) except what I have is a RadGrid on a RadMultiPage where the PagerStyle is set to "Slider". 

What happens is that when the page is loaded and I click on the History tab, the slider comes up looking like the attached sliderissuea.png.  If I click on another tab then return to the History tab, the slider comes up looking as it ought to (see sliderissueb.png).

As an experiment, I tried loading the page directly to the History tab and it renders correctly in that scenario.  Is there a fix for the PagerStyle Slider within a RadGrid that is similar to the one described for the RadSlider in the above link?

Thanks,
Dan
Marin
Telerik team
 answered on 23 May 2011
4 answers
318 views
I'm using a dropdownlist inside a radwindow.
If I set the Enable View state of Window manager to 'false', I'm unable to capture the selected item value of the dropdownlist on server side and if I set it to 'true' I'm able to capture the selected item value but the radwindow keeps on opening on each postback.
sirisha
Top achievements
Rank 1
 answered on 23 May 2011
4 answers
394 views
Hi!  I'm running into an issue when adding a JavaScript method to the 'OnClientClicked' of a RadButton.  I receive a JavaScript error "this._postbacksettings is null" and the button click event handler in the code behind never fires.

There is no validation on the aspx page, and the button is contained within a RadPane.  The button has even been Ajaxed to see if that would resolve the error, but did not make a difference.

Essentially I'm trying to disable the button and change it's text once a user clicks on it so they cannot click more than once while the 'click' event handler for the button in the code behind is completing.

Here is the JavaScript code and the aspx for the button:
function DisableSubmitBtn() {
                btnSubmit = $find('<% =btnItemSubmit.ClientId %>');
                btnSubmit.set_text("Submitting");
                btnSubmit.set_enabled(false);
}
 
 
<telerik:RadButton ID="btnItemSubmit" runat="server" Skin="Sunset" Text="Submit"
        Width="98%" OnClientClicked="DisableSubmitBtn">
        <Icon PrimaryIconCssClass="rbOk" PrimaryIconLeft="4" PrimaryIconTop="4" />
</telerik:RadButton>

I have similar logic working on another page without any problem.  Though on the other page there is validation and in the Javascript I have an 'If' clause that checks if the page is valid before disabling the button and changing it's text.

Could someone help me understand why this is happening, and what I may need to do to fix the JavaScript error?

Thanks!
Pero
Telerik team
 answered on 23 May 2011
2 answers
265 views
Hi,
 i  am displaying data in a rad grid,
i want to provide export option for only 4 columns of grid  out of 6.
can any one help me in this please.............

Thank you,
phani
phani
Top achievements
Rank 1
 answered on 23 May 2011
2 answers
84 views
I have a RADGrid with update capability-the INSERT and UPDATE done through a user control.  I have a pair of checkboxes on the main form which affect the processing.  How do I pass the values of these checkboxes into the user control (or access them from the user control code behind)?
Elliott
Top achievements
Rank 2
 answered on 23 May 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?