Search found 75 matches

Go to advanced search

by CyborgDE
Fri Apr 29, 2016 11:53 pm
Forum: Bug Reports
Topic: JSIL.Core Array.new
Replies: 5
Views: 8374

Re: JSIL.Core Array.new

Hello,

still not solved ...

JSIL.Core.js 9194 :

Code: Select all

    size = Number(sizeOrInitializer);
+    if (size.toString() == "NaN") {
+      size = 0;
+   }


Regards,
Uwe
by CyborgDE
Sat Dec 12, 2015 12:46 am
Forum: Technical Support
Topic: DataGrid
Replies: 4
Views: 6641

Re: DataGrid

Hello,

thank you !

A binding to a SelectedItem does not work, I use as a workaround SelectionChanged.

Regards, Uwe
by CyborgDE
Thu Dec 10, 2015 11:53 pm
Forum: General Discussion and Other
Topic: Upload file
Replies: 5
Views: 10455

Re: Upload file

Hello, thank you. The main problem was, to open the filedialog and get the values back to the code. I have a button, which calls the UploadFile() ... At the moment, this is the code (not perfect, but good for now) : using System; using System.Reflection; #if CSHTML5 using Windows.UI.Xaml; #else usin...
by CyborgDE
Thu Dec 10, 2015 11:36 pm
Forum: Technical Support
Topic: DataGrid
Replies: 4
Views: 6641

Re: DataGrid

Hello,

thank you.

If I have a empty list and assign this list to the DataGrid, the columns would not be generated, if I add items ti the list.
If I have a list with items, all works fine ...

Regards Uwe
by CyborgDE
Fri Dec 04, 2015 6:21 am
Forum: Technical Support
Topic: DataGrid
Replies: 4
Views: 6641

DataGrid

Hello,

my DataGrid is very slow.
6 rows with 25 columns needs about 5 seconds to display, is this normal ?

Thank you.

Regards Uwe
by CyborgDE
Fri Dec 04, 2015 6:17 am
Forum: Technical Support
Topic: Print or PDF support [SOLVED]
Replies: 5
Views: 7928

Re: Print or PDF support

Hello,

can you send me the code too ???

Regards, Uwe
by CyborgDE
Thu Nov 19, 2015 11:50 pm
Forum: Bug Reports
Topic: TextBox.TextChanged
Replies: 2
Views: 5094

Re: TextBox.TextChanged

Hello,

I have the same issue in FireFox for Linux. Does somebody have a workaround ?

Regards, Uwe
by CyborgDE
Thu Nov 19, 2015 11:40 pm
Forum: General Discussion and Other
Topic: Upload file
Replies: 5
Views: 10455

Re: Upload file

Hello,

I need a small peace of code in JavaScript to load a file as a byte[] or to upload a file to the server, can you help ?

Thank you !

Ragards, Uwe
by CyborgDE
Mon Nov 16, 2015 9:57 am
Forum: General Discussion and Other
Topic: Upload file
Replies: 5
Views: 10455

Upload file

Hello,

how can I upload a file from the local filesystem (FileDialog) ?

Regards, Uwe
by CyborgDE
Sun Nov 15, 2015 11:33 pm
Forum: Bug Reports
Topic: DownloadStringCompletedEventArgs has no "Error.Message" property
Replies: 7
Views: 10682

Re: DOMException has no "get_Message" method

Hello, any results ? I have often this exception in exception, the ex.Message throws the error "Object doesn't support property or method 'get_Message'", the exception is a DomException catch (Exception ex) { MessageBox.Show("Error loading : " + ex.Message); System.Diagnostics.De...
by CyborgDE
Thu Nov 12, 2015 12:35 am
Forum: Technical Support
Topic: Variable undefined
Replies: 0
Views: 6131

Variable undefined

Hello, why do I need this piece of code ? CanSer = true; if (value == null) { CanSer = false; } else { if (CSharpXamlForHtml5.Environment.IsRunningInJavaScript) { JSIL.Verbatim.Expression("if (value === undefined) { CanSer = false; }"); } } The value is a enum. Regards, Uwe
by CyborgDE
Wed Nov 11, 2015 8:18 am
Forum: Technical Support
Topic: Unknown Exception [CANNOT REPRODUCE]
Replies: 0
Views: 5938

Unknown Exception [CANNOT REPRODUCE]

Hello, if I remove a control, I got sometimes this System.NullReferenceException : at DotNetForHtml5.Core.HtmlEventProxy.<>c__DisplayClassa.<OnEvent>b__9() at Windows.UI.Core.CoreDispatcher.<>c__DisplayClass5.<BeginInvokeInternal>b__4() at System.Windows.Threading.ExceptionWrapper.InternalRealCall(D...
by CyborgDE
Wed Nov 04, 2015 4:43 pm
Forum: Bug Reports
Topic: Exception in DateTime
Replies: 1
Views: 4501

Exception in DateTime

Hello, I got a exception in obj = new DateTime(jahr, monat, tag, stunde, min, sek); at 0 clock with a date.getTimezoneOffset() with -60, so I got a negative (rest = -13390000000) number for the time in "function hmsmToTicks(hour, minute, second, millisecond) {" Regards, Uwe
by CyborgDE
Tue Nov 03, 2015 4:02 am
Forum: Bug Reports
Topic: WebClient
Replies: 2
Views: 4723

Re: WebClient

Also no exception in DownloadStringTaskAsync ...
by CyborgDE
Tue Nov 03, 2015 12:36 am
Forum: Bug Reports
Topic: WebClient
Replies: 2
Views: 4723

Re: WebClient

If the server ist unavailable, in got no Load_DownloadStringCompleted event under JavaScript ...
by CyborgDE
Tue Nov 03, 2015 12:31 am
Forum: Bug Reports
Topic: DownloadStringCompletedEventArgs has no "Error.Message" property
Replies: 7
Views: 10682

Re: Windows Phone

Hello, Not solved in 5.2 ! DOMException has not Message so Exception in Exception ... This error does not come, it comes from an other place, but the solution is the same ... void Load_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e) { if (e.Error != null) { MessageBox.Show...
by CyborgDE
Mon Nov 02, 2015 11:14 pm
Forum: Bug Reports
Topic: WebClient
Replies: 2
Views: 4723

WebClient

Hello, you make me crazy :-) var webClient = new WebClient(); webClient.Headers[HttpRequestHeader.Accept] = "text/xml"; webClient.Encoding = Encoding.UTF8; webClient.DownloadStringCompleted += Load_DownloadStringCompleted; webClient.DownloadStringAsync(new Uri("http://" + IP + &q...
by CyborgDE
Mon Nov 02, 2015 5:36 am
Forum: Bug Reports
Topic: [SOLVED] DataGrid.SelectItem
Replies: 3
Views: 6092

Re: DataGrid.SelectItem

Hello,

I can do a workaround, by setting the SelectedItem in the OnSelectionChanged event.

Regards, Uwe
by CyborgDE
Mon Nov 02, 2015 1:26 am
Forum: Bug Reports
Topic: [SOLVED] DataGrid.SelectItem
Replies: 3
Views: 6092

[SOLVED] DataGrid.SelectItem

Hello,

I got not results from a binding on the DataGrid.SelectedItem ...

Regards, Uwe
by CyborgDE
Fri Oct 30, 2015 9:32 am
Forum: Bug Reports
Topic: WebClient.UploadString [NO CODE TO REPRODUCE]
Replies: 1
Views: 4073

WebClient.UploadString [NO CODE TO REPRODUCE]

Hello,

the webClient.UploadString throws under Windows an exeption ( 404 Not found ) but not under javascript, here I got a html response string.

Regards,
Uwe

Go to advanced search