Search found 19 matches

Go to advanced search

by TooTallTommyT
Tue Jun 04, 2019 4:45 am
Forum: Bug Reports
Topic: WPF Designer
Replies: 15
Views: 23520

Re: WPF Designer

Have you actually done this, rthomas? I don't see how this works. I know how to add files by link, but I do not see how to "reference" those links once I have added them. Even if I could, how do then test it in the browser, since this isn't an actual CSHTML5 app? Do you have a sample proje...
by TooTallTommyT
Wed May 22, 2019 11:09 am
Forum: Bug Reports
Topic: WPF Designer
Replies: 15
Views: 23520

Re: WPF Designer

Actually, I had this problem with versions 1.xx in VS2015 and VS2017 as well. This is one of the reasons why I never tried to do anything serious with this framework. I have a project I'm eager to try, and with the features that are coming out with ver 2.xxx, the framework should give me enough to d...
by TooTallTommyT
Fri May 17, 2019 3:58 am
Forum: Bug Reports
Topic: WPF Designer
Replies: 15
Views: 23520

Re: WPF Designer

This screen shot is just after creating a brand new project in VS2017, and compiling.

Xaml Editor Errors.PNG
Xaml Editor Errors.PNG (192.1 KiB) Viewed 23470 times
by TooTallTommyT
Tue May 14, 2019 7:24 am
Forum: Bug Reports
Topic: WPF Designer
Replies: 15
Views: 23520

WPF Designer

I was hoping that the general forum would come up with some answers, but nothing so far, so... I've upgrade to the latest versions and I still get (even a brand new project) an "Invalid Markup" on my designer window. If hover over either of the two controls in the xaml page, textblock or t...
by TooTallTommyT
Fri Sep 14, 2018 4:25 pm
Forum: General Discussion and Other
Topic: Capture HttpRequestMessage data
Replies: 3
Views: 9701

Re: Capture HttpRequestMessage data

Just found the:

Code: Select all

HtmlPage.Document.DocumentUri
...and the...

Code: Select all

HtmlPage.Document.QueryString
...with a trove of information!!!!

Yay!! :mrgreen:
by TooTallTommyT
Thu Sep 13, 2018 1:38 pm
Forum: General Discussion and Other
Topic: Load dll in domain and CreateInstance
Replies: 2
Views: 8752

Re: Load dll in domain and CreateInstance

Hey Tater!! I appreciate the response. I was hoping that since both the "AppDomain.CurrentDomain.Load( )" and the "Activator.CreateInstanceFrom()" methods were available in my project that they had figured out a way to do it already. Since it takes a fair amount of time to load m...
by TooTallTommyT
Wed Sep 12, 2018 7:19 pm
Forum: General Discussion and Other
Topic: Load dll in domain and CreateInstance
Replies: 2
Views: 8752

Load dll in domain and CreateInstance

If a .dll was compiled based on the CSHTML5 references, could a person theoretically do something like this? var byte[] asmBytes = GetBytesFromAssemblyFile(); var asm = AppDomain.CurrentDomain.Load( asmBytes ); var pluginType = ( IPluginInterface ) Activator.CreateInstanceFrom( asm.FullName, "N...
by TooTallTommyT
Wed Sep 12, 2018 5:05 pm
Forum: Extensions and Plugins for CSHTML5
Topic: jQuery.ajax Extension for CSHTML5
Replies: 6
Views: 21620

Re: jQuery.ajax Extension for CSHTML5

I found the way to compile the js without the simulator, and running it in the browser seems to work okay. At least, I am getting data back now, though I have yet to verify the contents. But, it's a step in the right direction.
by TooTallTommyT
Wed Sep 12, 2018 3:05 pm
Forum: Extensions and Plugins for CSHTML5
Topic: jQuery.ajax Extension for CSHTML5
Replies: 6
Views: 21620

Re: jQuery.ajax Extension for CSHTML5

I can never get passed the simulator, so it won’t build the js files, and consequently I never get a chance to run it in a browser.
by TooTallTommyT
Wed Sep 12, 2018 2:42 pm
Forum: Extensions and Plugins for CSHTML5
Topic: jQuery.ajax Extension for CSHTML5
Replies: 6
Views: 21620

Re: jQuery.ajax Extension for CSHTML5

I've tried modifying this extension to download various binary files: images, .obj fiiles, and other binary files. I've tried setting a responseType on the ajax call to 'arraybuffer', and to 'blob', and setting the Action to 'Action<byte[]>, but the method keeps erring out saying "CSHTML5.Types...
by TooTallTommyT
Tue Sep 11, 2018 10:29 am
Forum: General Discussion and Other
Topic: Capture HttpRequestMessage data
Replies: 3
Views: 9701

Re: Capture HttpRequestMessage data

That turned out to be the way after all. My trouble was that I had set the localstorage while on one tab and tried retrieving it from the app while it was on another tab. So, I modified my Landing page ( as a proof of concept ) to add localstorage info, then redirect to the app. Since it was in the ...
by TooTallTommyT
Tue Sep 11, 2018 9:52 am
Forum: General Discussion and Other
Topic: Capture HttpRequestMessage data
Replies: 3
Views: 9701

Re: Capture HttpRequestMessage data

After doing more research, it would appear that using 'localStorage' would be a great way to go, but I am having trouble getting it to work. I thought it would be as simple as: var user = Interop.ExecuteJavaScript( "localStorage.getItem('User')" ); var roles = Interop.ExecuteJavaScript( &q...
by TooTallTommyT
Tue Sep 11, 2018 9:06 am
Forum: General Discussion and Other
Topic: Capture HttpRequestMessage data
Replies: 3
Views: 9701

Capture HttpRequestMessage data

Since my page is going to be launched from a website after user login, I need to be able to pass along credentials, headers, user info and other relevant data to the app. Is there a way to capture HttpRequestMessage data inside my app? Is this something I can pull out using javascript?
by TooTallTommyT
Sun Sep 09, 2018 5:07 pm
Forum: Technical Support
Topic: Type resolve error
Replies: 2
Views: 4926

Re: Type resolve error

I am sending a basic project now.

Thanks,
T
by TooTallTommyT
Thu Sep 06, 2018 4:29 pm
Forum: Technical Support
Topic: Type resolve error
Replies: 2
Views: 4926

Type resolve error

For some reason I cannot explain, my app is now throw an error: Could not find the name 'CriterionSystems' in the namespace '<CriterionSystems.Html5.Extensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null Public Interface>' This is a referenced assembly. It had been working okay, but for s...
by TooTallTommyT
Thu Aug 30, 2018 7:02 am
Forum: Technical Support
Topic: [SOLVED] External ResourceDictionary not being accessible in web browser
Replies: 1
Views: 3983

[SOLVED] External ResourceDictionary not being accessible in web browser

The JSIL is not able to Memoize my external ResourceDictionary. The reference works fine when building the app, and it shows fine in the emulator, but when I open the app in a browser it throws a "Memoized value is undefined" exception. When I trace it down, the attempt to memoize occurs i...
by TooTallTommyT
Wed Aug 29, 2018 11:29 am
Forum: General Discussion and Other
Topic: [SOLVED] Reference external ResourceDictionary
Replies: 3
Views: 10135

Re: Reference external ResourceDictionary

That mostly did the trick.... I did have to add forward slash ( / ) preceding the assemblyname, but once done, it worked perfectly! Thanks! <ResourceDictionary Source=ASSEMBLYNAME;component/FOLDERNAME/FILENAME.xaml/> to: <ResourceDictionary Source= / ASSEMBLYNAME;component/FOLDERNAME/FILENAME.xaml/>
by TooTallTommyT
Tue Aug 28, 2018 7:49 am
Forum: General Discussion and Other
Topic: [SOLVED] Reference external ResourceDictionary
Replies: 3
Views: 10135

[SOLVED] Reference external ResourceDictionary

I have a ResourceDictionary that I've moved to an external assembly, so that I can use it across all my apps, but I cannot seem to find the right approach to make it visible/usable in my projects. I've tried a variety of methods of setting Source attribute to no avail. Any suggestions?

Go to advanced search

 

 

cron