Shad Storhaug

Results 300 comments of Shad Storhaug

> It looks like the issue is the 4.8.0.1035 in Lucene.Net.Analysis.Common. This is the version you get if you ask for latest pre-release. But for Lucene.Net you get 4.8.0.770. If...

I am running into this issue again. Except now I am not seeing the correct warnings in either the IDE or when running `dotnet build` directly. We only see them...

Yeah, that did it on the command line. It is weird because running the build script locally shows them without clearing the cache. But they are still missing in the...

Thanks for the report. However, there isn't much help we can provide unless you post the code (relevant HTML and JavaScript) you are using that is causing an issue. The...

The code you have posted works as-is. Here it is again in a very simple HTML file. ``` html $(document).ready(function() { $('body').append(''); var dialogElement = { // Custom properties to...

FYI - I have posted an [example](http://stackoverflow.com/questions/35508000/stop-page-from-unloading-within-the-beforeunload-event-handler#35536912) on StackOverflow how to make a save & continue dialog like in your example. In that case, you will need to customize the...

My best guess is that your anchor is being [ignored by Dirty Forms](https://github.com/snikch/jquery.dirtyforms#default-anchor-ignoring-behavior) and as a result it is firing the `beforeunload` event. Normally, an anchor tag's event will be...

Were you able to find a solution to this issue? If not, posting a complete example might help.

This use case is a bit unusual. Normally, if JavaScript is enabled you would use a library such as [jquery Validation](http://jqueryvalidation.org/) to ensure the data is valid before posting back...