Hi Telerik
I Use IIS 8 and i want to enable RadCompression in my application .
in App_Browsers
<
browsers
>
<
browser
refID
=
"Default"
>
<
controlAdapters
>
<
adapter
controlType
=
"System.Web.UI.Page"
adapterType
=
"Telerik.Web.UI.RadHiddenFieldPageStateCompression"
/>
<
adapter
controlType
=
"System.Web.UI.Page"
adapterType
=
"Telerik.Web.UI.RadSessionPageStateCompression"
/>
</
controlAdapters
>
</
browser
>
</
browsers
>
in web.config
<
system.web
>
.
.
.
<
httpModules
>
<
add
name
=
"RadCompression"
type
=
"Telerik.Web.UI.RadCompression"
/>
</
httpModules
>
</
system.web
>
How can i optimize viewstate and compressing AJAX and Web Service responses in my application ?
please help me ...
Thanks .
Hi Telerik
I want to customize ErrorMessage and EmptyMessage for each controls but when set ErrorMessage , that apply for all controls in <TargetControls > .
1) How can i customize for each controls ?
2) I want to after validate the message errors apear in ValidationSummary and ErrorMessage not show in controls !
3) How can i hise ErrorMessage after validating in control ?
please help me
Thanks.
<
telerik:RadInputManager
ID
=
"RadInputManager1"
runat
=
"server"
>
<
telerik:RegExpTextBoxSetting
BehaviorID
=
"Setting3"
EmptyMessage
=
"..... how can customize this message for any controls ..."
ErrorMessage
=
"..... how can customize this message for any controls ..."
Validation-IsRequired
=
"true"
Validation-ValidationGroup
=
"Search"
>
<
TargetControls
>
<
telerik:TargetInput
ControlID
=
"txtFirstName"
/>
<
telerik:TargetInput
ControlID
=
"txtLastName"
/>
<
telerik:TargetInput
ControlID
=
"txtEmail"
/>
<
telerik:TargetInput
ControlID
=
"txtZipCode"
/>
</
TargetControls
>
</
telerik:RegExpTextBoxSetting
>
</
telerik:RadInputManager
>
I am pulling in dates from a database to highlight holidays in RadCalendar1_DayRender. When I mouseover a highlighted date, the highlight disappears. Is there a setting I need to keep the highlight date highlighted?
Thank you
Hi
The below renders inside a usercontrol with the label on initial load, but on postback, the button disappears. The source info of the browser still contains the control, however. The same happens for any control put into the LeftPane.
Am i doing something wrong or a bug?
Thanks
J
<telerik:RadSplitter RenderMode="Lightweight" ID="RadSplitter1" runat="server" Width="100%" Height="100%">
<telerik:RadPane ID="LeftPane" runat="server" Width="200px">
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</telerik:RadPane>
<telerik:RadSplitBar ID="RadSplitBar1" runat="server" CollapseMode="Forward">
</telerik:RadSplitBar>
<telerik:RadPane ID="EndPane" runat="server" Height="500px">
<div id="mapcanvas" style="height: 500px">
</div>
</telerik:RadPane>
</telerik:RadSplitter>
<
telerik:RadGrid
ID
=
"rgNotifications"
runat
=
"server"
AutoGenerateColumns
=
"False"
CellSpacing
=
"0"
AllowPaging
=
"false"
AllowSorting
=
"true"
Width
=
"920px"
Skin
=
"Windows7"
Height
=
"265px"
>
<
ClientSettings
EnableRowHoverStyle
=
"true"
>
<
Scrolling
AllowScroll
=
"True"
UseStaticHeaders
=
"true"
/>
</
ClientSettings
>
<
MasterTableView
DataSourceID
=
"sqldsNotificationAddresses"
ShowGroupFooter
=
"false"
DataKeyNames
=
"NotificationAddressID"
Width
=
"820px"
EditMode
=
"InPlace"
CommandItemDisplay
=
"Top"
CommandItemSettings-AddNewRecordText
=
"Add Employee Notification"
AllowAutomaticInserts
=
"True"
AllowAutomaticUpdates
=
"True"
AllowAutomaticDeletes
=
"true"
>
<
CommandItemSettings
ShowRefreshButton
=
"false"
/>
<
NoRecordsTemplate
>
<
div
class
=
"ACHD1"
>There are no Employee Notifications.</
div
>
</
NoRecordsTemplate
>
<
ColumnGroups
>
<
telerik:GridColumnGroup
HeaderText
=
"Send Notification For:"
Name
=
"Notify"
>
<
HeaderStyle
HorizontalAlign
=
"Center"
/>
</
telerik:GridColumnGroup
>
</
ColumnGroups
>
<
Columns
>
<
telerik:GridTemplateColumn
HeaderText="Always<br />Notify on<
br
/>Round Robin" UniqueName="NotifyRoundRobin">
<
ItemTemplate
>
<
asp:CheckBox
ID
=
"cbAlwaysNotifyOnRoundRobin"
runat
=
"server"
Checked='<%# Eval("AlwaysNotifyOnRoundRobin")%>' AutoPostBack="true" OnCheckedChanged="cbAlwaysNotifyOnRoundRobin_CheckChanged" />
</
ItemTemplate
>
<
EditItemTemplate
>
</
EditItemTemplate
>
<
InsertItemTemplate
>
</
InsertItemTemplate
>
<
ItemStyle
Width
=
"55px"
/>
</
telerik:GridTemplateColumn
>
<
telerik:GridBoundColumn
HeaderText
=
"Employee Name"
DataField
=
"EmployeeName"
>
</
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
HeaderText
=
"Email Address"
DataField
=
"EmailAddress"
>
</
telerik:GridBoundColumn
>
<
telerik:GridMaskedColumn
HeaderText
=
"SMS Text Number"
DataField
=
"SMSPhoneNumber"
Mask
=
"(###) ###-####"
>
</
telerik:GridMaskedColumn
>
<
telerik:GridTemplateColumn
HeaderText
=
"Contact-Us Lead"
ColumnGroupName
=
"Notify"
>
<
ItemTemplate
>
<
asp:CheckBox
ID
=
"cbNotifyContactUsLead"
runat
=
"server"
Checked='<%# Eval("NotifyContactUsLead")%>' AutoPostBack="true" OnCheckedChanged="cbNotifyContactUsLead_CheckChanged" />
</
ItemTemplate
>
<
EditItemTemplate
>
</
EditItemTemplate
>
<
InsertItemTemplate
>
</
InsertItemTemplate
>
<
ItemStyle
Width
=
"55px"
/>
</
telerik:GridTemplateColumn
>
<
telerik:GridTemplateColumn
HeaderText
=
"Credit App"
ColumnGroupName
=
"Notify"
>
<
ItemTemplate
>
<
asp:CheckBox
ID
=
"cbNotifyCreditApp"
runat
=
"server"
Checked='<%# Eval("NotifyCreditApp")%>' AutoPostBack="true" OnCheckedChanged="cbNotifyCreditApp_CheckChanged" />
</
ItemTemplate
>
<
EditItemTemplate
>
</
EditItemTemplate
>
<
InsertItemTemplate
>
</
InsertItemTemplate
>
<
ItemStyle
Width
=
"55px"
/>
</
telerik:GridTemplateColumn
>
<
telerik:GridTemplateColumn
HeaderText
=
"3rd Party Lead"
ColumnGroupName
=
"Notify"
>
<
ItemTemplate
>
<
asp:CheckBox
ID
=
"cbNotifyEmailParserLead"
runat
=
"server"
Checked='<%# Eval("NotifyEmailParserLead")%>' AutoPostBack="true" OnCheckedChanged="cbNotifyEmailParserLead_CheckChanged" />
</
ItemTemplate
>
<
EditItemTemplate
>
</
EditItemTemplate
>
<
InsertItemTemplate
>
</
InsertItemTemplate
>
<
ItemStyle
Width
=
"55px"
/>
</
telerik:GridTemplateColumn
>
<
telerik:GridButtonColumn
ConfirmText
=
"Delete this EmployeeNotification?"
ConfirmDialogType
=
"RadWindow"
ConfirmTitle
=
"Delete"
ButtonType
=
"ImageButton"
CommandName
=
"Delete"
UniqueName
=
"DeleteColumn"
>
<
ItemStyle
Width
=
"30px"
/>
</
telerik:GridButtonColumn
>
<
telerik:GridEditCommandColumn
ButtonType
=
"ImageButton"
UniqueName
=
"EditColumn"
>
<
ItemStyle
Width
=
"65px"
/>
</
telerik:GridEditCommandColumn
>
</
Columns
>
</
MasterTableView
>
</
telerik:RadGrid
>
Hi
Please help me out!
I have recently purchased a licence for the Q2 2016 devcraft tools and I am working on a website update...
I have a database in which numeric values have been recorded historically in an nvarchar column. I can't readily change the column type as it is in production and has several years of data in it.
However I would now like to use the aggregate function to put sum totals in a footer. How can I achieve this from where we are now - i.e. with a non-numeric data column? Obviously I get an error just adding aggregate="Sum" ( 'Sum is not supported for type system.object').
I tried cheating by just changing the column from gridbound to gridnumeric but it is not so easily fooled!
Can you suggest what is the best way to get from the nvarchar database column I have now, to getting an aggregate sum in the footer?
Thanks
Clive
Using Q2 2016 controls in VS 2015
I have a grid with two datetime column.
When i export this to Excel the time part of the date is not getting exported. only the date exported.
Hi,
How do I get RadImageGallery to restart the slideshow again, once it has finishes cycling through the images?
Thanks.
An