Telerik Forums
UI for WPF Forum
2 answers
374 views
Hi,

We are using Telerik WPF Rad controls for developing our future WPF web application and facing some problems. For one of the problems I have pasted my error log :

====================================================================================================

PLATFORM VERSION INFO
Windows : 5.2.3790.131072 (Win32NT)
Common Language Runtime : 2.0.50727.3053
System.Deployment.dll : 2.0.50727.3053 (netfxsp.050727-3000)
mscorwks.dll : 2.0.50727.3053 (netfxsp.050727-3000)
dfshim.dll : 4.0.20506.1 (Beta1.020506-0100)

SOURCES
Deployment url : http://its-hipl-serv/wcf/version11/version11%20Web.xbap
Application url : http://its-hipl-serv/wcf/version11/Application%20Files/version11%20Web_1_0_0_13/version11%20Web.exe.manifest

IDENTITIES
Deployment Identity : version11 Web.xbap, Version=1.0.0.13, Culture=en, PublicKeyToken=c186ad621efd8b01, processorArchitecture=msil
Application Identity : version11 Web.exe, Version=1.0.0.13, Culture=en, PublicKeyToken=c186ad621efd8b01, processorArchitecture=msil, type=win32

APPLICATION SUMMARY
* Online only application.
* Browser-hosted application.

ERROR SUMMARY
Below is a summary of the errors, details of these errors are listed later in the log.
* An exception occurred while downloading the application. Following failure messages were detected:
+ Downloading http://its-hipl-serv/wcf/version11/Application Files/version11 Web_1_0_0_13/Telerik.Windows.Data.dll did not succeed.
+ The remote server returned an error: (404) Not Found.

COMPONENT STORE TRANSACTION FAILURE SUMMARY
No transaction error was detected.

WARNINGS
There were no warnings during this operation.

OPERATION PROGRESS STATUS
No phase information is available.

ERROR DETAILS
Following errors were detected during this operation.
* [11/24/2009 6:59:33 PM] System.Deployment.Application.DeploymentDownloadException (Unknown subtype)
- Downloading http://its-hipl-serv/wcf/version11/Application Files/version11 Web_1_0_0_13/Telerik.Windows.Data.dll did not succeed.
- Source: System.Deployment
- Stack trace:
at System.Deployment.Application.SystemNetDownloader.DownloadSingleFile(DownloadQueueItem next)
at System.Deployment.Application.SystemNetDownloader.DownloadAllFiles()
at System.Deployment.Application.FileDownloader.Download(SubscriptionState subState)
at System.Deployment.Application.DownloadManager.DownloadDependencies(SubscriptionState subState, AssemblyManifest deployManifest, AssemblyManifest appManifest, Uri sourceUriBase, String targetDirectory, String group, IDownloadNotification notification, DownloadOptions options)
at System.Deployment.Application.DeploymentManager.SynchronizeCore(Boolean blocking)
at System.Deployment.Application.DeploymentManager.SynchronizeAsyncWorker()
--- Inner Exception ---
System.Net.WebException
- The remote server returned an error: (404) Not Found.
- Source: System
- Stack trace:
at System.Net.HttpWebRequest.GetResponse()
at System.Deployment.Application.SystemNetDownloader.DownloadSingleFile(DownloadQueueItem next)

COMPONENT STORE TRANSACTION DETAILS
No transaction information is available.



====================================================================================================


I already followed following link but still getting error:

Please do the needed, it is urgent..

Thank you.


Best regards,
Jignesh Patel
JigneshGN
Top achievements
Rank 2
 answered on 26 Jan 2010
1 answer
174 views
Hi there,

I am busy evaluating Telerik's WPF controls and came to a bit of a road bump I hope you can help.
I am trying to Drag and Drop from a ListBox (this will eventually be a RadPanelBar) to a re-hosted Workflow 4.0 Designer (It's a WPF control as well). 

I have got this working with the normal WPF drag and drop implementation for example.
Type type = ((AvailableActivity)(((ListBox)sender).SelectedItem)).Type; 
DataObject data = new DataObject(DragDropHelper.WorkflowItemTypeNameFormat, type.AssemblyQualifiedName); 
DragDrop.DoDragDrop(this.box1, data, DragDropEffects.Move); 

The WF Designer then queries the DataObject when its being dragged over and handles it from there.

My question is, is there anyway to provide the DataObject to the WF Designer as it expects it using the Telerik Drag and Drop? I have followed your drag and drop tutorials and got it working between list boxes, from RadPanelBar to ListBox etc. This is what I currently have.

private void OnDragQuery(object sender, DragDropQueryEventArgs e) 
if (e.Options.Status == DragStatus.DragQuery) 
AvailableActivity activity = ((AvailableActivity)((System.Windows.Controls.ListBox)(e.Options.Source)).SelectedItems[0]); // get the activity from the list 
                    
DataObject data = new DataObject(DragDropHelper.WorkflowItemTypeNameFormat, activity.Type.AssemblyQualifiedName); 
                    
e.Options.DragCue = activity.Type.AssemblyQualifiedName;  
e.Options.ArrowCue = RadDragAndDropManager.GenerateArrowCue();  
e.Options.Payload = activity.Type.AssemblyQualifiedName;    
e.QueryResult = true
e.Handled = true;  
 
Thanks
Greg
Miroslav
Telerik team
 answered on 25 Jan 2010
7 answers
88 views
What I would like to do is to force a specific RadPanelBarItem to stay expanded and, ideally, get rid of the arrow too (specifically, I want to do this for the first item and leave the rest to act normally).  I have tried handling various events and setting templates to try to intercept the collapse functionality but have been so far unable to figure it out.  I am also unable to figure out how to remove the arrow.  Any ideas?
Bobi
Telerik team
 answered on 25 Jan 2010
2 answers
156 views
Hello!

RadCarousel is a great component and it makes the application that I'm working on look so profesional even if I don't have a designer backgound or so.
There are a couple of addition things that I would need from this component, they may be already there but I don't know how to take advantage of them.
First of all - I need to always have one selected CarouselItem out there, no matter if I've clicked one or not.
If I press an additional "Load" button I should always have the possibility to retrieve the top most carousel item there
( right now carousel.SelectedItem can return null if there was no click on a specific item )
Second - Reffering the beginning or the end of carousel items sequence - I should have the possibility to stop the flow of the items  (if I continuously press the carousel's ScrollViewer buttons) I mean that the last item should be in the middle of the screen and not somewhere far in the left/right of the screen (check out the attachments) - and this last one should be the SelectedItem also
RoxanaC
Top achievements
Rank 1
 answered on 25 Jan 2010
1 answer
114 views
Hello everybody,

is it possible to install different version of WPF controls (indeed, all the compenent develop by Telerik: ASP.NET, AJAX, Windows Form ... ) on the same machine? What the conseguence in file system and Visual Studio (2008 and 2010 versions)?

Thank you.

Attilio Gelosa.
Milan
Telerik team
 answered on 25 Jan 2010
1 answer
197 views

Hi
Is it possible to play videos (wmv, FLV, mov, etc) in the WPF carousel?

BR

Gabriel

Milan
Telerik team
 answered on 25 Jan 2010
1 answer
179 views
Hi,

I need separate context menu for the grid rows and the grid headers.

I defined the rows context menu in the xaml like this:

<telerikGrid:RadGridView x:Name="ordersGrid" AutoGenerateColumns="False" DataLoadMode="Synchronous" >
            <Navigation:RadContextMenu.ContextMenu>
                <Navigation:RadContextMenu Opened="RadContextMenu_Opened" ItemClick="RadContextMenu_ItemClick">
                    <Navigation:RadContextMenu.Items>
                        <Navigation:RadMenuItem Header="Update Order" />
                        <Navigation:RadMenuItem Header="Cancel Order" />
                        <Navigation:RadMenuItem Header="View Details" />
                    </Navigation:RadContextMenu.Items>
                </Navigation:RadContextMenu>
            </Navigation:RadContextMenu.ContextMenu>

and i defined in the code the context menu for the headers.

The problem is that the main context menu overrides the header context menu. I even try to remove it in the loaded event but it didn't help:


        void ordersGrid_Loaded(object sender, RoutedEventArgs e)
        {
            GridViewHeaderRow headerRow = ordersGrid.ChildrenOfType<GridViewHeaderRow>().FirstOrDefault();
            IEnumerable<GridViewHeaderCell> cells = headerRow.Cells.OfType<GridViewHeaderCell>();

            /**remove the default menu from the header in order to ser a separate menu for header**/
            foreach (GridViewHeaderCell cell in cells)
            {
                var x = cell.ContextMenu;
                RadContextMenu.SetContextMenu(cell, null);
            }
            GridViewHeaderMenu gvhm = new GridViewHeaderMenu(ordersGrid);
            gvhm.InitializeMenus();
        }

How can i achieve it?

Thanks,

Ofer

Pavel Pavlov
Telerik team
 answered on 22 Jan 2010
1 answer
63 views
hi

I am using a datepicker control and when i set "SelectableDateStart" property to some date, the dates before that displayed as hidden mode.  We can view the dates very lightly but the display is somewhat like blank. 

 

 

 

 

<telerik:RadDatePicker Height="25" Margin="64,98,51,0" Name="radDatePicker1" SelectableDateStart="1/19/2010" VerticalAlignment="Top" Width="163" />

thank you

 

Kaloyan
Telerik team
 answered on 22 Jan 2010
3 answers
128 views
Hello,

I have the following problem: I have a form with a RadDatePicker in it. Everything works fine, but when I enter an invalid date into the entry field of the picker, the date is just resetted or the entry field of the picker is empty. I would prefer to see the defined ErrorTemplate instead.
I tried to catch this by adding ValidatesOnError to the Binding in the XAML file but it doesnt work.

So: How can I catch it if the user enters an invalid value to the entry field?

Best Regards,
Jerma
Kaloyan
Telerik team
 answered on 22 Jan 2010
1 answer
61 views
We notice that if we change the culture to be chinese,
RadTimePicker's select time box always show the Militory time (24 hour format). See the attachment.
Does this consider as a bug?
thx!
Jane
Kaloyan
Telerik team
 answered on 22 Jan 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?