Search found 1142 matches

Go to advanced search

by JS-Support @Userware
Fri Jan 13, 2017 7:38 am
Forum: Technical Support
Topic: Telerik RadRichTextEditor
Replies: 1
Views: 4117

Re: Telerik RadRichTextEditor

Hi,

An example for CSHTML5 will soon be available that will be based on the Kendo UI Rich Text Editor:
http://demos.telerik.com/kendo-ui/editor/index

Thanks.
Regards,
JS-Support
by JS-Support @Userware
Fri Jan 13, 2017 7:37 am
Forum: Technical Support
Topic: Combobox SelectionBoxItem
Replies: 1
Views: 4072

Re: Combobox SelectionBoxItem

Hi,

Please use the "SelectedItem" property instead.

Thanks.
Regards,
JS-Support
by JS-Support @Userware
Fri Jan 13, 2017 7:35 am
Forum: Technical Support
Topic: WCF service method call 'Completed' event
Replies: 2
Views: 5274

Re: WCF service method call 'Completed' event

Hi, You can either call the web service synchronously, or you can use the async/await pattern. For the synchronous call, please refer to the SOAP tutorial at: http://cshtml5.com/links/wcf-limitations-and-tutorials.aspx For the asynchronous version, please check the sample Showcase application (in VS...
by JS-Support @Userware
Fri Jan 13, 2017 6:17 am
Forum: Technical Support
Topic: Resource.resx and CultureInfo
Replies: 5
Views: 10224

Re: Resource.resx and CultureInfo

Hi, Support for "System.Globalization.CultureInfo.CurrentUICulture" is expected in 2017. RESX files are currently supported but they cannot be localized. Localizable RESX are on the roadmap for 2017 as well: http://cshtml5.com/links/roadmap.aspx If you need the feature quickly, please cont...
by JS-Support @Userware
Fri Jan 13, 2017 6:14 am
Forum: Technical Support
Topic: IValue Converter
Replies: 1
Views: 4704

Re: IValue Converter

Hello Amrutha, The current signature is the one used in UWP, as documented at: https://msdn.microsoft.com/library/windows/apps/windows.ui.xaml.data.ivalueconverter.aspx UWP is the syntax used by the CSHTML5 projects created using the Professional Edition. Yes, we are going to make the Silverlight ve...
by JS-Support @Userware
Fri Jan 13, 2017 6:11 am
Forum: Technical Support
Topic: [SOLVED] How can ChildWindow be dragged
Replies: 2
Views: 6194

Re: How can ChildWindow be dragged

Hi Tomny, I have just created the following item on UserVoice. Please be sure to vote for it in order for it to be implemented very soon: https://cshtml5.uservoice.com/forums/274799-c-xaml-for-html5-feature-requests/suggestions/17716459-make-the-childwindow-draggable Thanks. Regards, JS-Support
by JS-Support @Userware
Fri Jan 13, 2017 6:07 am
Forum: Bug Reports
Topic: The ListBox can not display the "name" attribute
Replies: 4
Views: 8905

Re: The ListBox can not display the "name" attribute

tomny wrote:This problem is also related to another problem: when using jQueryAjaxHelper serialization, if the property name has "name" in the browser, it can not be serialized.


Thanks. Ok, we are going to fix this as well.

JS-Support
by JS-Support @Userware
Fri Jan 13, 2017 6:06 am
Forum: Technical Support
Topic: Porting Microsoft CUI controls to CSHTML5
Replies: 1
Views: 3984

Re: Porting Microsoft CUI controls to CSHTML5

Hi,

Please refer to this topic:

http://forums.cshtml5.com/viewtopic.php?f=4&t=7854

Thanks.
Regards,
JS-Support
by JS-Support @Userware
Wed Jan 11, 2017 10:45 am
Forum: Bug Reports
Topic: The ListBox can not display the "name" attribute
Replies: 4
Views: 8905

Re: The ListBox can not display the "name" attribute

Hi tomny, Thanks for your message. This issue is indeed very strange. Thank you for managing to isolate the problem. We are going to fix it asap. PS: In order to find out the problem, we wasted a lot of time. :( We really appreciate your valuable help during this Beta period. Thanks so much. Regards...
by JS-Support @Userware
Wed Jan 11, 2017 10:42 am
Forum: Technical Support
Topic: Telerik DatePicker - How to get value of control?
Replies: 3
Views: 6343

Re: How to get value of control?

Hi, Your code should work fine. To debug, please: 1) launch your application in Chrome 2) then open the Chrome Developer Tools (Ctrl+Shift+I or F12) 3) click "Sources" 4) open the file "YourApp.js" (where "YourApp" is the name of your project) 5) go to the line that con...
by JS-Support @Userware
Wed Jan 11, 2017 10:35 am
Forum: Technical Support
Topic: Can I mix HTML markup with generated elements?
Replies: 5
Views: 8325

Re: Can I mix HTML markup with generated elements?

Can i access the Laptop/computer internal camera to use in my Human Resources web application and we need that the user can take the employees picture using the computer camera. this is posible? Hi, Yes, this is possible using Apache Cordova. Just add the JS libraries to your project and call them ...
by JS-Support @Userware
Wed Jan 11, 2017 10:32 am
Forum: Technical Support
Topic: How do I add overlay on particular container control?
Replies: 3
Views: 5822

Re: How do I add overlay on particular container control?

Hi, Let's assume you have the following XAML: <Grid x:Name="This_is_your_original_panel"> (...) </Grid> You can display an overlay by surrounding the original panel using another Grid, in which you add the overlay element, like this: <Grid> <Grid x:Name="This_is_your_original_panel&qu...
by JS-Support @Userware
Wed Jan 11, 2017 10:19 am
Forum: Technical Support
Topic: .Net Framework recommendation
Replies: 2
Views: 5601

Re: .Net Framework recommendation

Hello Amrutha,

Thanks for your message.

Both .NET 4.5 and 4.6 are supported.

If your original application was build using .NET 4.5 as you said, I would go with 4.5.

Regards,
JS-Support
by JS-Support @Userware
Tue Jan 10, 2017 6:36 am
Forum: Technical Support
Topic: Passing Dependency object to VisualTreeHelper
Replies: 1
Views: 4570

Re: Passing Dependency object to VisualTreeHelper

Hi, In the current implementation of CSHTML5, only UIElements can have visual children. In Silverlight, most dependency objects are also UIElements, so this shouldn't be an issue. Please change your method to: public static T FindVisualChildByType<T>(DependencyObject parent) where T : DependencyObje...
by JS-Support @Userware
Tue Jan 10, 2017 6:26 am
Forum: Technical Support
Topic: How do I add overlay on particular container control?
Replies: 3
Views: 5822

Re: How do I add overlay on particular container control?

Hi, You can see an example in the sample "Showcase" application: the initial "Welcome" screen is an overlay of the underlying elements. To view the "Showcase" sample, open Visual Studio and click "File" => "New" => "Project" => "C#/XAM...
by JS-Support @Userware
Tue Jan 10, 2017 6:22 am
Forum: Technical Support
Topic: Can I mix HTML markup with generated elements?
Replies: 5
Views: 8325

Re: Can I mix HTML markup with generated elements?

shrikant wrote:which kendo event is used in ExecuteJavaScriptAsync for webcam?

Hi shrikant,

Can you please elaborate on what you mean by "which kendo event"? How is Kendo UI related to the webcam? Are you referring to Apache Cordova?

Thanks.
Regards,
JS-Support
by JS-Support @Userware
Mon Jan 09, 2017 8:18 am
Forum: General Discussion and Other
Topic: Looking for a WebGL example
Replies: 6
Views: 11687

Re: Looking for a WebGL example

rkmore wrote:Trying it now...


Did the demo work for you?

We are preparing a strongly-typed C#-based version of the same demo.

Thanks.
Regards,
JS-Support
by JS-Support @Userware
Mon Jan 09, 2017 8:14 am
Forum: Bug Reports
Topic: custom UserControl : unable to preview this element
Replies: 2
Views: 12241

Re: custom UserControl : unable to preview this element

When we make a custom UserControl there is no XAML preview : "unable to preview this element" with red background. XAML and C#: nothing special just some TextBlock element. Is it normal behaviour or a bug? Hi Péter, ⋅ When you are editing the UserControl (meaning that you are se...
by JS-Support @Userware
Mon Jan 09, 2017 5:09 am
Forum: Technical Support
Topic: How to use bootstrap (or uikit)?
Replies: 1
Views: 4576

Re: How to use bootstrap (or uikit)?

Dear Tomny, The recommended way to style your controls is to use XAML styles and templates. You can read more about them at: http://cshtml5.com/links/styles-and-templates.aspx If really want to use CSS styles, you can do so by using the method "Interop.LoadCssFile", documented at: http://c...

Go to advanced search

 

 

cron