<
asp:Panel
ID
=
"pagerContainer"
CssClass
=
"pagercontainer"
runat
=
"server"
>
<
table
border
=
"0"
width
=
"100%"
cellpadding
=
"2"
cellspacing
=
"2"
>
<
tr
>
<
td
valign
=
"middle"
width
=
"105px"
nowrap
=
"nowrap"
>
<
asp:Panel
ID
=
"LeftContainer"
runat
=
"server"
CssClass
=
"pagerCommand"
>
<
asp:ImageButton
AlternateText
=
"First Page"
CommandName
=
"First"
ID
=
"firstPageButton"
ImageAlign
=
"AbsMiddle"
ImageUrl
=
"~/Images/first.gif"
runat
=
"server"
ToolTip
=
"First Page"
/>
<
asp:ImageButton
AlternateText
=
"Previous Page"
CommandName
=
"Previous"
ID
=
"previousPageButton"
ImageAlign
=
"AbsMiddle"
ImageUrl
=
"~/Images/prev.gif"
runat
=
"server"
ToolTip
=
"Previous Page"
/>
</
asp:Panel
>
</
td
>
<
td
valign
=
"middle"
width
=
"175px"
>
<
asp:Panel
ID
=
"sliderPanel"
CssClass
=
"pagerCommand"
runat
=
"server"
>
<
telerik:RadSlider
ID
=
"slider"
runat
=
"server"
AnimationDuration
=
"0"
Orientation
=
"Horizontal"
EnableViewState
=
"true"
SmallChange
=
"1"
ShowDecreaseHandle
=
"false"
ShowIncreaseHandle
=
"false"
Width
=
"175px"
Skin
=
"Web20"
AutoPostBack
=
"true"
EnableEmbeddedSkins
=
"true"
>
</
telerik:RadSlider
>
</
asp:Panel
>
</
td
>
<
td
valign
=
"middle"
width
=
"105px"
>
<
asp:Panel
ID
=
"rightContainer"
runat
=
"server"
CssClass
=
"pagerCommand"
>
<
asp:ImageButton
AlternateText
=
"Next Page"
CommandName
=
"Next"
ID
=
"nextPageButton"
ImageAlign
=
"AbsMiddle"
ImageUrl
=
"~/Images/next.gif"
runat
=
"server"
ToolTip
=
"Next Page"
/>
<
asp:ImageButton
AlternateText
=
"Last Page"
CommandName
=
"Last"
ID
=
"lastPageButton"
ImageAlign
=
"AbsMiddle"
ImageUrl
=
"~/Images/last.gif"
runat
=
"server"
ToolTip
=
"Last Page"
/>
</
asp:Panel
>
</
td
>
<
td
align
=
"right"
>
<
asp:Label
ID
=
"positionLabel"
runat
=
"server"
CssClass
=
"pagerinfo"
/>
</
td
>
</
tr
>
</
table
>
<
asp:HiddenField
ID
=
"SliderHiddenField"
runat
=
"server"
/>
</
asp:Panel
>
Hello,
I have a question regarding paging in RadGrid when the grid is already filtered.
I am using NeedDataSource event for binding the grid.
My datasource query is rather slow so I implemented custom paging and it is working fast as expected when paging the RadGrid when no filter is active.
But when I filter the RadGrid, the paging is very slow. Changing the page number lasts like when the grid is fetching the data when filtering.
I understand that the process of filtering cannot be faster because of my datasource query, but is there a way that I can make paging faster when my grid is filtered?
Thank You for your help.
<
asp:Repeater
ID
=
"rptSection"
runat
=
"server"
ClientIDMode
=
"AutoID"
>
<
ItemTemplate
>
<
details
>
<
summary
>
<
h4
>Title section</
h4
>
<
div
>
<asp:repeater id=rptGrpRubrique...
...
<telerik:RadNumericTextBox ID="rnt" ClientIDMode="AutoID" ...
<
telerik:AjaxSetting
AjaxControlID
=
"GlobalPanel"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"GlobalPanel"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
Dim
ctrl
As
New
Telerik.Web.UI.AjaxUpdatedControl
ctrl.ControlID = radTextBox.ID
'ctrl.ControlID = radTextBox.UniqueID
'ctrl.ControlID = radTextBox.ClientID
ram.AjaxSettings.Item(0).UpdatedControls.Add(ctrl)
i've got no solution since many days...
Thanks for your help.
Hello Telerik,
I have created a sample project with a RadListBox and a button.
When the page loads, the list is populated using some query from the Northwind database.
After scrolling the list at a random item, and pressing the button to reload the list,
I would like to position the list at the top, not at an arbitrary place in the list.
This functionality should not depend if I have and item selected or not in the list.
Thanks,
Alex
Hi,
I'm trying to replace ASP.NET Ajax TreeView control with a Telerik component.
For each level, we use different style and backgroud image. We have two issues:
Please notice that we need to use different hover, selected etc for each level. It seems that Hover is infact moving text 20 px to the right, but it will also override background image.
Best regards, Mikko
Hello,
Because of design requirements we don't want to load fonts from google fonts api.
We are using Telerik AJAX controls V2017.2.711.45.
I already read the following article about providing the Roboto font, if no internet connection exists.
But this solution only overrides the font but still calls the api and I want to completely remove the api calls.
Mentioned reference:
http://www.telerik.com/support/kb/aspnet-ajax/details/use-material-skin-without-active-internet-connection
Even if I select a theme with no Roboto font in it (like Bootstrap for example) the api gets called.
Is there a setting to disable this call?
Thanks in advance