Hi,
I have a problem. We have migrated from old library to RadPageView and everything is working, except ShortCuts to specific tabs. In previous library we had feature that, we can add & before letter and it has been using as a shortcut to this tab. Also this char has underline under themselves. Is if possible to do it in Telerik? I was looking for it, but without success
Thank you in advice for any answers.
Best regards,
Patryk
It flickering when the left menu is collapsed or expanded.
I've use custom tablelayoutPanel with doubleBufer
How can fix it?
Thx.
pd. don't know how can i share a example proyect so i put here a link to my onedrive hope it can help you, thx again.
https://1drv.ms/u/s!Aub3FOLN5IO_gudWobcwA4fzVTvXNg?e=dpc3o5
Hi,
How can I enable the Gesture scrolling for the RadPageView pages ( either for touch screens or using Smart Gestures ): so I can use both Gestures and RadPageViewStrip buttons ?
Also for the RadScrollablePanel can the the gestures be used besides to the right side scroll bar ?
Thanks
Hi,
I currently develop an application on Windows 10 on a tactile device uses a RadPageView (explorerBar mode).
I want to use gesture to control the scroll, i set the enableGesture to Pan.
And in PanGesture event, i have the code :
If
CType
(
CType
(sender, RadPageView).GetChildAt(0).GetChildAt(3), Telerik.WinControls.UI.RadScrollBarElement).Visibility = ElementVisibility.Visible
Then
If
CType
(
CType
(sender, RadPageView).GetChildAt(0).GetChildAt(3), Telerik.WinControls.UI.RadScrollBarElement).Value + e.Offset.Height >=
CType
(sender, RadPageView).VerticalScroll.Minimum
And
_
CType
(
CType
(sender, RadPageView).GetChildAt(0).GetChildAt(3), Telerik.WinControls.UI.RadScrollBarElement).Value + e.Offset.Height <=
CType
(sender, RadPageView).VerticalScroll.Maximum
Then
CType
(sender, RadPageView).VerticalScroll.Value =
CType
(
CType
(sender, RadPageView).GetChildAt(0).GetChildAt(3), Telerik.WinControls.UI.RadScrollBarElement).Value + e.Offset.Height
End
If
CType
(
CType
(sender, RadPageView).GetChildAt(0).GetChildAt(3), Telerik.WinControls.UI.RadScrollBarElement).Value += e.Offset.Height
End
If
Only the scroll bar moves, not the control
Thanks for your help :)
NB : I'm using Q1-2015
Hi,
The scroll buttons of the Page view, are small especially when we put an image( 100 px width ) in the Page view.
How can I make the scroll button occupy more height: all available height ?
Is it also possible to have the left scroll on the left side and the right scroll on the right side rather then both on same side next to each other ?
Please find attached an example: the current status is : only button circled in yellow can be clicked, but I want to have a button in the size of the red rectange.
Thanks in advance,
Fahmi
Hi,
I'm trying to implement a behavior that will enable me to "check" each page of a pageview. The purpose of this is to define witch pages an user can access.
Basically I want to replace the close button with a checkbox, and then somehow be able to write to the console what pages are checked.
Thanks in advance!
Hi,
We need to generate a form when you hover over certain tabs on our PageView, as it needs to be interactive, I'm using a ShapedForm to appear on mouse hover over each tab.If there's a better way to do this, let me know.
The issue is the position it appears in, I can get it to appear where my cursor is easy enough, but I would like it to appear directly next to the tab, the tabs are horizontal on the left hand side, so would like it to appear to the right of the tabs with the top of the tab matching the top of my generated form.
I'm iterating through each RadPageViewStripElement and subscribing to the mouse hover event, so in my event I have RadPageViewStripItem, but I am not sure how I get the exact position of that tab using that object, as the locations are always relative to the control it is in.
Any help would be appreciated.
Thanks,
Dan