Erkan Tairi
Erkan Tairi
I just tried purging my winetricks installation, and using master, and also re-created the prefix, but still same issue: ``` Executing mkdir -p /home/etairi ------------------------------------------------------ warning: You are using a...
@austin987 There is no `syswow64` directory at all inside the `win32` prefix. And as you can see it copies the library to `system32` directory, but later it searches it inside...
@austin987 Yes, that's what I meant, it shouldn't search in `syswow64` at all. Here is the log file: https://gist.github.com/etairi/90c453d18dae961f441df32c8bdfed69
@austin987 Thanks for the clarification. I just tested, and indeed I don't use the GUI there is no problem.
My script where I call the typeahead looks like this: ``` $(function () { $("#service-manual").typeahead({ source: function(request, response) { $.ajax({ url: "/Home/GetBusinessDesriptions", dataType: "json", data: { state: $("#StateID").val(), term: request.term...
Here is an example data: ``` { "id": 221, "value": "Business Management Consultants" }, { "id": 221, "value": "Fuel Management" }, { "id": 221, "value": "Financial Planning Consultants" }, {...
I changed the code like the one below, but now when I type I don't get any suggests, though I don't get any error messages too: ``` $("#service-manual").typeahead({ items: 4,...
First of all, the above fix helped me solve the problem, when selecting an item from the list. Now it displays properly. Though, the point is that even if I...
I didn't catch exactly about which part you are talking. If you are talking about the part inside my AJAX call, where I have: ``` data: { state: $("#StateID").val(), term:...
Yes, that solved the problem! Thank you very much for your help. One more quick question, the drop down list is not very nicely formatted, it looks like this: http://prntscr.com/5eq7kw...