Search found 1142 matches

Go to advanced search

by JS-Support @Userware
Mon Apr 25, 2016 2:15 pm
Forum: General Discussion and Other
Topic: Webworker in CSHTML5/JSIL ?
Replies: 1
Views: 6337

Re: Webworker in CSHTML5/JSIL ?

Hi, Thanks a lot for your message. We are looking into the topic of web workers. The new JavaScript Interop features introduced in Beta 8, especially the possibility to embed JS files in the project, should help make it possible. I will keep you updated as soon as we have a working solution. Thanks ...
by JS-Support @Userware
Mon Apr 25, 2016 2:12 pm
Forum: General Discussion and Other
Topic: Support for Triggers, DataTriggers?
Replies: 1
Views: 6576

Re: Support for Triggers, DataTriggers?

Hi, Thanks for your message. We have added Triggers and DataTriggers to the roadmap. You can read the updated roadmap here . The ComboBox is not yet templatable (it uses the native HTML5 combo box, which is also particularly suited for mobile devices, on which it renders differently), but we are wor...
by JS-Support @Userware
Mon Apr 25, 2016 2:04 pm
Forum: Pre-Releases, Downloads and Announcements
Topic: Beta 8.0 of C#/XAML for HTML5 released
Replies: 0
Views: 12965

Beta 8.0 of C#/XAML for HTML5 released

We are pleased to inform you that the Beta 8.0 has been released with over 25 new features! (compared to Beta 7.0) You can read about it at the following URL: http://www.cshtml5.com/links/beta8-released.html Changes since the last intermediary build released on the Forums (7.3) include: - TabControl...
by JS-Support @Userware
Wed Apr 20, 2016 12:54 pm
Forum: Pre-Releases, Downloads and Announcements
Topic: Fix to the "Run from localhost" issues
Replies: 0
Views: 12707

Fix to the "Run from localhost" issues

Dear CSHTML5 users, If the "Run from Localhost" feature introduced in Beta 7.2 did not work on your computer, please find attached a patch to make it work. The patch will be included in the upcoming Beta 8. To apply the patch: 1) Download the ZIP file attached at the end of this message 2)...
by JS-Support @Userware
Mon Apr 18, 2016 12:05 am
Forum: Pre-Releases, Downloads and Announcements
Topic: Beta 7.3 of C#/XAML for HTML5 released
Replies: 3
Views: 8023

Re: NEW! Beta 7.3 of C#/XAML for HTML5 released! [Download]

Hi, Thanks a lot. Sure! Please find below the default button style, which you can modify to suit your needs: <Style x:Key="ButtonStyle1" TargetType="Button"> <Setter Property="Background" Value="#FFE2E2E2"/> <Setter Property="Foreground" Value="...
by JS-Support @Userware
Sat Apr 16, 2016 9:23 am
Forum: Pre-Releases, Downloads and Announcements
Topic: Beta 7.3 of C#/XAML for HTML5 released
Replies: 3
Views: 8023

Beta 7.3 of C#/XAML for HTML5 released

Dear CSHTML5 users and forum members, We are pleased to inform you that the Beta 7.3 of CSHTML5 is available for download! UPDATE: Link removed because a newer beta has been released The main new features since Beta 7.2 are the support for ControlTemplates, for ResX resources, and for embedding JS/C...
by JS-Support @Userware
Thu Apr 14, 2016 3:52 am
Forum: Bug Reports
Topic: [SOLVED] Passing none ascii character string in WCF (SOAP) garbles the string.
Replies: 2
Views: 5224

Re: Passing none ascii character string in WCF (SOAP) garbles the string.

Thank you mikeda.

We are able to reproduce this issue.

We are going to fix it as soon as possible.

Regards,
JS-Support
by JS-Support @Userware
Mon Apr 11, 2016 8:45 am
Forum: Technical Support
Topic: ComponentOne controls
Replies: 2
Views: 5317

Re: ComponentOne controls

Hi, The new Extensibility features introduced in Beta 7.2 make it possible to add support for 3rd party components. This is usually achieved by wrapping the JavaScript-based version of those 3rd party controls into a C#/XAML-based class that can be easily consumed in C#/XAML from a CSHTML5 project. ...
by JS-Support @Userware
Mon Apr 11, 2016 8:40 am
Forum: Technical Support
Topic: Call mail from code [SOLVED]
Replies: 1
Views: 3797

Re: Call mail from code

Hi,

Please use the code at the following URL:

http://forums.cshtml5.com/viewtopic.php?f=7&t=1463

Regards,
JS-Support
by JS-Support @Userware
Mon Apr 11, 2016 8:39 am
Forum: Extensions and Plugins for CSHTML5
Topic: Compose Email
Replies: 0
Views: 20232

Compose Email

Hi, Please find below the code for composing a new email from within your app (this will cause the default mail application to open with the specified recipient address, subject, and body): (Requires beta 7.2 or newer) public static void ComposeEmail(string recipientEmailAddress, string emailSubject...
by JS-Support @Userware
Thu Apr 07, 2016 9:50 am
Forum: General Discussion and Other
Topic: Question about threading
Replies: 1
Views: 7848

Re: Question about threading

Dear RKM, To perform long web operations without blocking the UI, such as uploading to the Azure Blob service, you can use the "async" version of the http calls, which are executed by the browser on a background thread and give a callback when they are complete. If you need to have a loop ...
by JS-Support @Userware
Mon Apr 04, 2016 9:13 am
Forum: Bug Reports
Topic: Inside ScrollViewer problem with ListBox ItemsPanel as WrapPanel
Replies: 1
Views: 4455

Re: Inside ScrollViewer problem with ListBox ItemsPanel as WrapPanel

Dear Vulten, Welcome to the forums and thank you for the bug report. We have been able to reproduce it when placing the code inside a Grid (please let me know if you encounter the issue also when the code is placed inside something else). We are going to attempt to fix it. In the meantime, you may b...
by JS-Support @Userware
Mon Apr 04, 2016 9:06 am
Forum: Extensions and Plugins for CSHTML5
Topic: FileOpenDialog Extension for CSHTML5
Replies: 12
Views: 38981

Re: FileOpenDialog Extension for CSHTML5

Thanks a lot RKM for your contribution.
by JS-Support @Userware
Mon Apr 04, 2016 8:59 am
Forum: Technical Support
Topic: [SOLVED] ComboBox
Replies: 3
Views: 6566

Re: ComboBox

Hi, ComboBox.ItemsSource is supposed to work fine. Here is an example of use: <StackPanel> <ComboBox x:Name="ComboBox1" DisplayMemberPath="Name"/> <TextBlock Text="Selected planet radius:"/> <TextBlock Text="{Binding ElementName=ComboBox1, Path=SelectedItem.Radius}...
by JS-Support @Userware
Wed Mar 23, 2016 9:47 am
Forum: Bug Reports
Topic: Works when compiled with VS2013 but NOT WITH VS2015
Replies: 1
Views: 4688

Re: Works when compiled with VS2013 but NOT WITH VS2015

Hi, Thanks for your message. This is due to the fact that the "dynamic" keyword is unfortunately not supported under VS 2015 with CSHTML5 due to an issue related to JSIL and the Roslyn compiler (we are going to add a more informative compilation error). However, you can achieve the same re...
by JS-Support @Userware
Wed Mar 23, 2016 9:28 am
Forum: Technical Support
Topic: How to implement onbeforeunload correctly? [SOLVED]
Replies: 2
Views: 4870

Re: How to implement onbeforeunload correctly?

Hi, Yes, you can prevent the user from accidentally leaving the application by registering the OnBeforeUnloaded event of the JavaScript "window" object. Doing so will cause a confirmation dialog to appear when the user attempts to close the app. The default text of the confirmation dialog ...
by JS-Support @Userware
Mon Mar 21, 2016 9:59 am
Forum: Bug Reports
Topic: [SOLVED] .GIF files not copied to Resources directory on build
Replies: 2
Views: 5401

Re: .GIF files not copied to Resources directory on build

Thanks for reporting this issue. At the moment, only JPG and PNG are supported.

We are going to add GIF support asap.

Regards,
JS-Support
by JS-Support @Userware
Mon Mar 21, 2016 9:58 am
Forum: General Discussion and Other
Topic: JS Minimization
Replies: 1
Views: 6266

Re: JS Minimization

Dear RKM, Thanks a lot. Yes, minification is on our internal roadmap for late 2016 - early 2017. By the way, according to a discussion on the JSIL forum (JSIL is the open-source C# to JS transpiler used by CSHTML5), disabling "property renaming" in Google Closure, and/or adding the "-...
by JS-Support @Userware
Mon Mar 21, 2016 9:46 am
Forum: Technical Support
Topic: How to force UI update before blocking operation? [SOLVED]
Replies: 3
Views: 6197

Re: How to force UI update before blocking operation?

Sorry, the method name is "BeginInvoke", not "RunAsync". I have updated the previous post. Please let me know if it works. By the way, you can find the reference of the CoreDispatcher at the following URL: http://help.cshtml5.com/html/806f0ccc-ebed-0142-38b7-15e84693477a.htm Rega...
by JS-Support @Userware
Sun Mar 20, 2016 11:27 am
Forum: Technical Support
Topic: How to force UI update before blocking operation? [SOLVED]
Replies: 3
Views: 6197

Re: How to force UI update before blocking operation?

Hi, Yes, this is possible. All you need to do is to move your long blocking operation into a Dispatcher.BeginInvoke(...) call. Here is an example: //Here you update the UI Dispatcher.BeginInvoke(() => { // Here you do the long blocking operation. This code will be executed on the UI thread as soon a...

Go to advanced search

 

 

cron