<
telerik:GridTemplateColumn
DataField
=
"Selected"
HeaderText
=
"Use?"
UniqueName
=
"uxSelected"
>
<
ItemTemplate
>
<
asp:CheckBox
ID
=
"uxSelectedCheckbox"
runat
=
"server"
Enabled
=
"true"
/>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>
<
telerik:GridTemplateColumn
DataField
=
"SackColourRcGcBc"
HeaderText
=
"Custom Colour"
UniqueName
=
"uxSackColourRcGcBc"
>
<
ItemTemplate
>
<
telerik:RadTextBox
ID
=
"uxSackColourRcGcBcTextbox"
runat
=
"server"
Width
=
"80px"
AutoPostBack
=
"False"
/>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>
Dim
idString
As
String
=
""
Dim
colourString
As
String
=
""
Try
For
Each
item
As
GridDataItem
In
DirectCast
(uxFormView.FindControl(
"uxRadGrid"
), RadGrid).Items
Dim
SackTypeID
As
String
= item.GetDataKeyValue(
"SackTypeID"
).ToString()
If
CType
(item(
"uxSelected"
).FindControl(
"uxSelectedCheckbox"
), System.Web.UI.WebControls.CheckBox).Checked
Then
idString += SackTypeID +
"!"
If
ConvertRGBToHTMLColour(
CType
(item(
"uxSackColourRcGcBc"
).FindControl(
"uxSackColourRcGcBcTextbox"
), RadTextBox).Text) <>
""
Then
colourString +=
CType
(item(
"uxSackColourRcGcBc"
).FindControl(
"uxSackColourRcGcBcTextbox"
), RadTextBox).Text
End
If
colourString +=
"!"
End
If
Next
Catch
ex
As
Exception
End
Try
We have a old application where it uses Telerik 2009 version where it contains a dll for each control such as Radwindow.
In 2009 version if we need to use Radwindow we register something like this
<%
@ Register Assembly="RadWindow.Net2" Namespace="Telerik.WebControls" TagPrefix="rad" %>
and use the same like
<
rad:RadWindowManager ID="RadWindowManager1" runat="server">
Now we have 2010 version where we have a license. How to upgrade these files. If we just replace them with our new version will it work?
But in the new version we have only one dll but in the older version we have a single dll for each control.
Please help.
protected
virtual
void
Rewriter_AuthorizeRequest(
object
sender, EventArgs e)
{
HttpApplication app = (HttpApplication)sender;
absolutePath = app.Request.Url.AbsolutePath;
........
........
........
$(document).ready(function () {
// buttonSaveClientID is defined already
$find(buttonSaveClientID).add_clicking(validationFunction);
});
for (var i = 0; i < 1000000; i++) {
if ($find(buttonSaveClientID))break;
}//This is the AJAX Manager where DatabaseName is a RadComboBox. I have also subscribed to ClientEvents for Request Start and ResponseEnd - BUT THESE NEVER GET CALLED WHEN THE ITEMREQUEST EVENT IS TRIGGERED?????
<telerik:RadAjaxManager ID="RadAjaxManager2" OnAjaxRequest="RadAjaxManager1_AjaxRequest" runat="server"
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="DatabaseName">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="DatabaseName" LoadingPanelID="RadAjaxLoadingPanel2" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
<ClientEvents OnRequestStart="RequestStart" OnResponseEnd="ResponseEnd" />
</telerik:RadAjaxManager>
 
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel2" runat="server" Transparency="50" BackColor="Silver">
<div>
<img src="images/Loading.gif" alt="Loading..." />
</div>
</telerik:RadAjaxLoadingPanel>
EnableAutomaticLoadOnDemand="true" ShowMoreResultsBox="true" EnableVirtualScrolling="true"
DataValueField="Name" DataTextField="Name" LoadingMessage="Loading..." ShowWhileLoading="true" AutoPostBack="true"
OnItemsRequested="DatabaseName_ItemsRequested"
>