Tagged Questions
0
votes
2answers
14 views
Winjs Promise Async test
I m developping a Winjs/HTML windows Store application .
I have to do some tests every period of time so let's me explain my need.
when i navigate to my specific page , I have to test (without a ...
0
votes
1answer
19 views
Bind Dynamic Data from an API to FlipView control
I've been trying to bind data from a json API call to the flipView with no luck. Here's the HTML code:
<body>
<!--Define the Template Here-->
<div ...
1
vote
2answers
22 views
How to debug app when its not already running and activated due to search
Typically to debug an app, I will hit F5 to start debugging it. However I want this app not already running and it activated due to ActivationKind = search. If I hit F5, then app will get activated ...
0
votes
0answers
17 views
Breakpoint not getting hit due to symbols not been loaded
I am trying to debug an issue with my JavaScript based Windows 8 Store app related to search activation. I have re-build and deployed again on my machine but for some reason the breakpoint in the ...
0
votes
0answers
15 views
Rotating image using gestures after flipping is not working in winjs
I first flipped an image and then rotated the image using gestures but the image is rotating in the opposite direction.
This is the code i used to flip the image
tempob.style.transform = ...
0
votes
7answers
64 views
CSS to centralise a HTML5 div at the bottom of the screen
I have the following HTML5 document:
<canvas id="myCanvas">
</canvas>
<img id="logo" src="/images/logo.png" style="visibility:collapse" />
<div id="adControl" style="width: ...
1
vote
2answers
59 views
HTML5 Canvas performance very poor using rect()
I'm writing a game, which displays the score at the top of the screen in the following fashion:
canvasContext.fillStyle = "#FCEB77";
canvasContext.fillText(' Score: ' + Math.floor(score) + ' ...
0
votes
2answers
34 views
Are WinJS/Metro Apps single threaded?
I read in Windows 8 development tutorial that Metro apps written using HTML/JavaScript runs on single thread. If so, how it executes asynchronous functions in WinRT?
0
votes
1answer
40 views
Windows 8: Html markup not showing on page
I am new to Windows 8 development, and am going the Html/Javascript route. I have started out with the Grid template.
Why when I add, Test Content.. to the content area html (not the item template ...
0
votes
2answers
42 views
Win8 / WinJS Pop Up Control with List View
In a Win 8 / WinJS / StoreApp - What is the recommended way to make a modal dialog that has a listview where users can select items?
For example, say I have a page with a to do list (listview). There ...
0
votes
1answer
21 views
WinJS ListView Tap-and-Hold
In the WinJS ListView Control, how do you handle a tap and hold gesture for an item?
Each item template has an item and the contextmenu handler works via mouse, but not touch for the tap and hold ...
0
votes
3answers
48 views
Promise chaining not working. Why?
I have following code to select multiple contacts and the filter only names that have XYZ. I am using then and done to accomplish this filter. In my contacts, there is one contact named XYZ Dude and I ...
1
vote
0answers
29 views
how to access index database data in windows 8 store app
Our Devteam is caching some data in index db.To test some scenarios we want to access this index db and modify some of its data.Is there a way we can do this like we do it for isolated storage using ...
1
vote
2answers
44 views
Fire a JS function every time a settings flyout appears
I currently need a couple JavaScript functions to fire every time a user pulls out a settings flyout to dynamically populate the flyout. For example:
(function() {
functionOne();
})();
...
1
vote
2answers
27 views
Filtering contacts to display or show only set number of contacts
My app is calling pickMultipleContactAsync method that returns a list of contacts. If I want to filter only particular contats to display or show only a set number of contacts, does WinJS provide any ...
0
votes
1answer
39 views
Print button in Windows 8 Store app HTML + JS for Split Template app
I have an app made in WinJS for Windows 8 App store, and I use the Split Page template. So on the split page I have two colums the one named List column and the one named Item detail column. It is for ...
0
votes
2answers
38 views
Options for logging Windows Store apps
So I'm creating many Windows (8) Store apps and I'm wondering what are my best choices to help my users but possible bugs (if they ever occour).
I was thinking about a log4net like solution to a ...
1
vote
1answer
34 views
Windows 8 how to choose which camera to initialize
I am developing a Windows Store App and I am using the Camera and Microphone capabilities. I would like the back camera to be initialized but the examples that I have found always initialize the front ...
0
votes
2answers
46 views
Can I bind data to data-win-options?
I use the control MicrosoftNSJS.Advertising.AdControl in the ItemTemplate of a ListView.
I would like to bind some datas to the following data-win-options properties : ApplicationId and AdUnitId
The ...
0
votes
2answers
37 views
File object in WinJS - how to retreive the containing folder
I have got a app with the getItemsAsync()-method returning a file-object for a picture chosen by the user with a file picker. Now I would like to get the folder-object of the folder which contains the ...
1
vote
2answers
120 views
how to remove an elemet from group listView in windows 8 app using javascript
I want user to select an item from listview and then from the appbar click on the delete button to remove the selected item.... I have done this kind of thing many times before but on a simple ...
3
votes
2answers
89 views
WinJS gestureRecognizer - how to trap multiple gestures
I've been using this article (and some others) to try and implement a gesture recognition in my app, and it does work. However, what I want to do is to detect multiple gestures; for example, a swipe, ...
0
votes
0answers
30 views
WinJS: IInputStream from String
In a situation where I have a string in memory and want to send it to a web service using BackgroundUploader, I want to avoid having to write it to disk (and thus handling cleanup of temp files).
Now ...
-1
votes
0answers
47 views
WinJS.ListView databinding behaving strangely
I have asked this question on Windows 8 forum. But I am posting it here for wider audience.
I am facing strange behaviour with data binding with WinJS.ListView. For full details please refer to the ...
1
vote
0answers
44 views
WinJS share target with write access to file
My application acts as a share target for any file.
I have read access to the instances of Windows.Storage.StorageFile objects, through:
if ...
1
vote
1answer
74 views
Create Keyboard “Extension” like Windows 8 Metro IE
In Windows 8 Metro Style IE, if you click on the address bar, there will be "bookmark" tiles show up on the top of the address bar. If you are on a touch device, the tiles will show up above the soft ...
3
votes
3answers
94 views
How to update visually a live tile every minute of a Windows Store App in JS/HTML/CSS?
I would like the live tile of my app to be updated everytime the user opens the Start screen as its live tile's feature is "only" visual (doesn't need to be on lockscreen or perform specific logic in ...
1
vote
1answer
73 views
Why is the result of document.getElementById null in this case?
I am basically new to JavaScript and WinJs stuff. Following this tutorial to learn it.
My default.html is below
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
...
0
votes
2answers
80 views
Switching from GridView to ListView when Windows Store app is snapped
I am trying to change the layout of my listView control from "GridView" to "ListView" when application gets snapped. Of course, it should return to "GridView" in any other state. I wrote some code, ...
0
votes
1answer
94 views
How can I list my twitter followers list in WinJS.UI.ListView
I want to list all my twitter followers in my WinJS.UI.ListView.
WinJS.xhr({
url: "https://api.twitter.com/1/followers/ids.json?cursor=-1&screen_name=" + twitterusername,
...
0
votes
2answers
73 views
Invoking the app bar in Windows 8 app causes scrolled child divs to jump to top
I've encountered an odd behavior in a Windows8 app that I'm building with WinJS, javascript, and HTML. In a particular Page that I'm implementing, there are several divs that have CSS rules like ...
0
votes
1answer
57 views
How to change url dynamically after packaging Metro apps?
Hi I have created a package for my metro application.Here while developing my app I have given a Url static,But I need to change Url dynamically whenever my requirement changes.So that what should I ...
0
votes
2answers
113 views
WIndows 8 App, HTML/Javascript Offline Black Screen
I'm trying to develop a small Windows 8 App as a test for a larger project that I'll be working on.
I'm using VS 2012, HTML, CSS, and Javascript. I've been able to create, build and deploy the app ...
0
votes
1answer
66 views
What is the syntax for calling functions defined using WinJS.UI.Pages.define from the associated html?
Since there is a distinct possibility that I'm doing something wrong, I'd like to describe what I'm attempting to accomplish, in case there is a better way of doing it.
Platform: Windows 8 app using ...
1
vote
1answer
33 views
addEventListner working only at app creation
For some reason my eventHandling code stopped working.
I was working on some functions to handle the indexedDB stuff, when i went back to work on the interface, i noticed that the eventHandlers only ...
0
votes
1answer
42 views
How to switch language for WinJS.Resources.processAll?
When using WinJS.Resources.processAll WinJS is using the system language, which is fine. And the example at this MSDN site shows, how to change the language/context to change single strings: ...
1
vote
0answers
33 views
WinJS.Binding multiple sources
I'm new to data binding, but it looked like an easy way to achieve what I need to do.
My problem (as you can see) is that I have two (or more) of these boxes with different data on each page. The ...
2
votes
2answers
223 views
How to upload image to azure blob storage using javascript
I think the question says it all: How can I upload an image to an azure blob storage using JavaScript for Windows 8 Apps? I can only find examples for C# on the internet but nothing for JavaScript.
0
votes
2answers
29 views
Is there any significantly better way to write this xhrRetry utility function?
I have written this xhrWithRetry method.
Purpose: Purpose of this util method is to retry couple of times, in case service calls fails with error code 500. client code that calls this util method, ...
0
votes
1answer
50 views
Showing Tick Marks on input[type=range]
I'm creating a windows 8 app and need to create a vertical slider that also displays tick marks. I'm able to get the range slider to appear vertically by appying the windows specific class: ...
1
vote
1answer
67 views
Modifying manifest file deletes indexdb in windows 8 metro app
My app(windows 8 metro, using javascript) uses indexDb for database, i have seen when i modify manifest file indexDB database is deleted.
Is this a bug or a feature??.
Now my app is already in ...
2
votes
1answer
81 views
WinJS template <p> not rendering
I am working on a Windows 8 application with HTML/JS.
I've got problem with the template rendering. The paragraph "row" does not render, only the h4 and h6. If I change the "p" to "h3" or "h4" etc. it ...
0
votes
0answers
23 views
Backgroundtask.js - how to include other files
I've started playing with time triggers, and defined my task in bacvkgroundtask.js. Now I have an simple, maybe silly question:
How should I include external files?
Usually we do this in the html ...
0
votes
2answers
239 views
WinJS, display image from a byte array?
I'm looking for a way to display a JPEG image stored in a byte array. This is a Windows 8 Store App built in Javascript. The byte array is returned from a C# WinRT component. Its type in C# is byte[].
...
0
votes
1answer
52 views
winjs.xhr invalid request
I'm trying to let the user to create his own rss aggregator and it works fine, but my problem is when the user input something is not valid for example numbers, it gives me "req.send(options.data)" , ...
0
votes
0answers
122 views
Using WebAuthenticationBroker for oAuth (WinJS, Pocket API)
I'm trying to authenticate with the Pocket API using the WinJS WebAuthenticationBroker, however every time I open the broker I get a "cannot connect to service" error. I have a feeling that it's to do ...
0
votes
2answers
84 views
WinJS flipview control and item template
trying to use the FlipView control in WinJS and having some issues. I am able to bind it to a datasource and get the URL/picture property show up in the flipview control content pane but it fails to ...
0
votes
1answer
150 views
Vertical Scroll, ListView with WinJS
How can I make a ListView scrolling vertically with HTML/JS in an Windows8 application using WinJS?
I've developed an Windows 8 app with XAML/C# and in the application I used a ListView to get a list ...
2
votes
2answers
103 views
How to make winJS app scrollable?
I am new to developing Windows 8 store apps, and I am in the process of creating my first one.
The app I am making is a note taking app. I only started the app yesterday, so it's still very basic, ...
0
votes
1answer
44 views
Should activated be called before loaded event?
I am reading this free ebook. On page 105, it describes the sequence in which various events are invoked and it seem to suggest that activated executes before loaded. In order to test it, I added the ...






