'***************************************' Initialize Variables'***************************************Dim objColumn_Select As New Telerik.Web.UI.GridCheckBoxColumn'***************************************' Add Button Column To Grid'***************************************Me.gridMain.Columns.Add(objColumn_Select)'***************************************' Define Column Properties'***************************************With objColumn_Select .ItemStyle.HorizontalAlign = HorizontalAlign.Center .HeaderText = "" .UniqueName = "chkSelect"End With'***************************************' Add Handler To Custom ItemPreRender Event'***************************************AddHandler e.Item.PreRender, AddressOf Me.gridMain_ItemPreRender'***************************************' Add "OnCheckedChanged" Event'***************************************CType(e.Item.FindControl("chkSelect"), CheckBox).Attributes("onCheckedChanged") = "gridMain_ToggleRowSelection"
<
telerik:RadDatePicker
SharedCalendarId="sharedCalendar"
id="dpAuditorReportBeginDate"
MinDate="1/1/1900"
Runat="server"
Width="100px"
style="vertical-align:middle;"
cssClass="inputdata">
<DateInput cssClass="inputdata" runat="server"/>
</telerik:RadDatePicker>
ThisDate needs to happen from Javascript.
I am using "RadControls for ASPNET AJAX Q1 2008" version.
So far I have tried the .Clear() and .clear() without success like this:
Have tried other forum responses and either can't find object or get a null error.
I have this wrapped in a div and can disable everything in the div but the calendar items.
function toggle enabled(){
var picker1 = $find("<%= dpAuditorReportBeginDate.ClientID %>");
picker1.clear()
}
Hope you can help!!
Thanks,
Chris

<span class="rtIn"> <img src="images/buttons/F.gif"> Front Hazard Camera - 2 items</span><span class="rtIn"> <table> <tbody><tr><td><div onclick="LoadProd('2B156252391EDR9946N1940N0M1','prod')"> <table> <tbody><tr><td><img src="images/other/noprod.gif"></td> <td><img src="images/buttons/B.gif"></td> <td>2 B 156252391 EDR 99 46 N1940 N0 M1<br>1 product : N0</td></tr></tbody></table></div></td></tr></tbody> </table></span><div class="rtIn"> <div class="rtTemplate"> <table> <tbody><tr><td></td><td><div onclick="LoadProd('2P144116118ESF7600P2600L8C1','g')"> <table> <tbody><tr><td><img src="sqlImageHandler.ashx?id=2P144116118ESF7600P2600L8C1" width="64" height="64"></td> <td><img src="images/buttons/P.gif"></td> <td>144116118 76 00 P2600...<br>2 products : L8 R8</td></tr></tbody></table></div></td></tr></tbody> </table> </div></div>How can I remove the extra line in the nodes added by the web service?
Currently we are using the Telerik RadGrid control to shows the data which is stored in the MOSS custom list. The volume of the data is around 2000+ . [The data may increase as the list is the task list]. The RadContorl is placed on the ASP.Net user control(.ascx page) and the same user control is used in the MOSS site as the custom web part.
When we try to open the page which contains this web part, it is taking long time(about 1 Minute) to load the page. And it is taking about 30 to 40 seconds to group and sort the data.
Data Fetch Login –
1. Get all the records from the Custom List using SharePoint APIs and store it in the DataTable object
2. Store the DataTable in the Session object for further data operations on Grid
The Properties set for the RadGrid are as follows
1. Auto Generate Columns = True
2. Allow Pagination = False
3. Allow Filtering = False
4. Allow Sorting = True
5. Allow Grouping = True
6. Allow Client Site Column Reordering = True
As per Annadatha’s suggestions we disabled the Grouping and Sorting option to check the performance, but find no success. We even tried using the GridBoundColumn (For testing purpose) and disabled “AutoGenrateColumn=False”. But no improvement in page load time.
The browser used by customer – IE6 / IE7. We also used IE8 for testing, the performance is bit good in IE8 as compared with IE6 or IE7.
And the execution time taken is
Data Fetch – About 1 Sec
Data Bind – About 0.3 Sec
Page Rendering Time – 30 Sec
Could you please let us know what could be the issue.