Is there a way to get the zoom and pan controls that are in the RapMap to be stand alone, or a way to use the RadMap as a container?
Example, i have a simple display that I want the user to be able to interact with just like if it were a map. But in this scenario, it could be anything within a RadPanl (or dockpanel).
I'm trying to understand the best path forward to implement a column of CheckBoxes in a RadGridView. The CheckBoxes need to be conditionally visible (or hidden) per row-level business logic (a boolean value for each row, a different property from the one represented in the CheckBox).
While I have been able to implement this successfully using a DataTemplateSelector, which switches in either a CellTemplate containing the CheckBox, or an "empty" CellTemplate... I am still having a challenge with controlling the UI behavior. What happens is if a user clicks the empty cell, it goes into Edit Mode, as if accepting text; I don't want this to happen... it should remain empty and not allow any interaction. For the cell with the CheckBox, I can click inside and toggle the CheckBox on and off (checked/unchecked), which is great... but if a user clicks just outside the CheckBox but still inside the cell where the CheckBox resides, it too will enter Edit Mode, as if accepting text (and it hides the CheckBox). Again, I don't want this to happen.
What's the best path for allowing only a CheckBox inside such a column, and disallowing any UI elements other than the conditionally appearing CheckBoxes?
Thanks in advance for your help.I have this menu if you can see the attached file (menu1.png) is the one thats working though the inline height generating is not correct.
Height should cover all of the items included in the group.
The attached file (menu2.png) should be the correct one. I checked the CSS and if I set the height of the .rpslide or the .rpgroup to auto or 100% the animation of the slide will not work.
Hi
I am plotting 10,000 data points on RadChartView. The UI gets freezed\hanged till all 10,000 data points are plotted on RadChartView. It took around 20 seconds to load all the data points
Instead of plotting all the 10,000 data points in one shot, I tried plotting data points at the interval of 100
i,e add 100 data points to collection via thread and update UI via Dispatcher object, again add 100 data points to collection and update UI (even this will hang UI) and so on...
Can we show only few data points on Chartview which user can view or see and remaining points are shown only when user do zooming or scrolling ?
If so how can it be done ?
Thanks
Deepak Deshmukh
Hello telerik,
I am about to finish a custom implementation of a feature which consists of an element from a treeview being dragged to a Docking pane.
The attached screen shot shows how it happens.
The only thing missing so far is I need to find a way to dock it maximized or expanded, as of now the usercontrol comes taking only part of the space available as default.
is there an easy way to achieve the desired behavior problematically?
Here is my code:
private
void
RadDocking_Drop(
object
sender, DragEventArgs e)
{
var data = e.Data.GetData(
"TreeViewDragDropOptions"
);
var item = ((TreeViewDragDropOptions)data).DraggedItems.First();
var splitter = ((RadDocking)sender).Items[0];
RadPaneGroup group = (RadPaneGroup)((RadSplitContainer)splitter).Items[0];
var newPane =
new
RadPane();
switch
(((RadTreeViewItem)item).Name)
{
case
"RadPdfViewer"
:
newPane.Content =
new
UserControl1();
newPane.Header =
"uc1"
;
break
;
case
"RadChartview"
:
newPane.Content =
new
UserControl2();
newPane.Header =
"uc2"
;
break
;
case
"RadDataFilter"
:
newPane.Content =
new
UserControl3();
newPane.Header =
"uc3"
;
break
;
}
if
(newPane.Content !=
null
)
group.AddItem(newPane, Telerik.Windows.Controls.Docking.DockPosition.Center);
}
Thank you
Hello All,
Well, color me stupid or something, because I can figure this one out. I'm using Visual Studio 2013 and I am trying to create a wizard for my WPF application. I have created a RadWizard with a RadWiardPages collection in it, with multiple WizardPage (six to be exact) objects in the collection. However, I can ONLY see ONE of the pages in the Designer. I CANNOT switch between the pages like I can on another window where I have a standard TabControl. I would like to know how I can design subsequent pages in a wizard when I can only see one page. On the other window with a TabControl, when I select a different TabItem the designer shows that TabItem's contents. Is there a way of doing this with the RadWizard control????? It makes it very difficult to design any Wizard with multiple pages when you can't see the different pages in the designer!!!
Thanks in advance,
Kevin Orcutt
Senior Software Engineer
Wurth Electronics ICS, Inc.
7496 Webster St., Dayton, OH 45414
Tel: 937.415.7700
Toll Free: 877.690.2207
Fax: 937.415.7710
Email: Kevin.Orcutt@we-ics.com
http://www.we-ics.com
I want to be able to switch the design view from wizardpage to wizardpage. Currently It will only display the first wizardpage entered in the xaml view.
Is this currently possible? If not I guess the alternative would be to make a new page.xaml for every telerik:wizardpage then override the default navigation somehow. I could use some help finding a solution.
<telerik:RadWizard x:Name="radWizard"> <telerik:RadWizard.WizardPages> <telerik:WizardPage Name="DeployTargetPage"> <telerik:WizardPage.Content> <Grid> <TextBlock Width="80" Height="20" Margin="35,51,387.4,207.4" >Deploy target</TextBlock> <ComboBox Width="100" Height="20" Margin="35,76,367.4,182.4" > <ComboBoxItem Selected="LocalDeploySelected">Local host</ComboBoxItem> <ComboBoxItem Selected="AzureDeploySelected">Azure</ComboBoxItem> </ComboBox> </Grid> </telerik:WizardPage.Content> </telerik:WizardPage> <telerik:WizardPage Name="SetParametersPage"> <telerik:WizardPage.Content> <Grid> <TextBlock Width="100" Height="20" >Site name</TextBlock> <ListBox Grid.Column="0" Height="20" /> <TextBlock Width="100" Height="20" >Publish link</TextBlock> <ListBox Height="20" /> <TextBlock Width="100" Height="20" >User name</TextBlock> <ListBox Height="20" /> <TextBlock Width="100" Height="20" >Password</TextBlock> <ListBox Height="20" /> </Grid> </telerik:WizardPage.Content> </telerik:WizardPage>
Hi, like the OpenDiagramdemo.zip, i have a diagram, when startup, it add 500 shapes to this diagram. Then i click the "click me" in the left treeview to open a radpane, and the radpane show the diagram. The problem is that it takes too much time to opening the radpane. When opened, i move the view area in the thumbnail, its response is slow too. How to make fast?
Hope answers, thanks!
OpenDiagramdemo.zip download url: http://www.filefactory.com/file/5cu3dseh6x8h/OpenDiagramdemo.zip