1
vote
4answers
42 views

Setting button text via javascript

I am setting up a button via javascript, the button shows, not the text, any recommendation? var b = document.createElement('button'); b.setAttribute('content', 'test content'); ...
0
votes
1answer
85 views

Windows store app - item background color's

I cant change background color of item in my split application. I don't know, how, becaause i already tryed using css, and without any success. This is template for item(pretty much default): ...
1
vote
2answers
188 views

Vertical scrolling in Windows 8 FlipView

Is it possible to do a vertical scroll in a WinJS FlipView? It seems like the FlipView is blocking the scroll event? Thanks in advance
1
vote
1answer
63 views

Windows Store App: Dynamically load JavaScript for easier update?

Recently I have taken over a Windows Store app project written in C#/XAML and one of its requirements is, Migrating the project to Javascript/HTML5, and by making javascript dynamically loaded from ...
1
vote
1answer
318 views

Implement a inline scrollviewer in Windows Store app with HTML5/JS

I am developing a Windows 8 Store app with html5/JS, a reading app. The content page looks like : And I'm using CSS-Grid-Layout to manage the page layout like this: <body> <div ...
0
votes
2answers
748 views

How do you style WebView control in Windows Store App?

I have C# / XAML win store app which receives various data from json. one piece of it - html string. I display that string using WebView.NavigateToString However I don't see how can I style it. ...
0
votes
0answers
453 views

JQuery Gridster with HTML/Javascript Windows 8 Store App

I decided to create my first windows store app with html/javascript and since you cannot do drag and drop with javascript and listview i have looked for alternatives. Windows store apps support ...
3
votes
1answer
214 views

W8 Store App: Writing UI in HTML and CSS, and using C# DLLs for Domain/Model? [closed]

We've started to research the possibility of creating the LOB W8 Store apps pushed to Surfaces through our/customers' domain store. We've got a portfolio of working WinForms and WPF apps written in ...
0
votes
0answers
47 views

Is HtmlNode.SelectNodes missing from HtmlAgilityPack for Windows 8? [duplicate]

Possible Duplicate: Is HtmlNode.SelectNodes missing from HtmlAgilityPack for Windows RT? I am trying to use the following to get a link from a web page: string text = *html ...
0
votes
1answer
735 views

Setting innerHTML of iframe html encodes text

I have an iframe that I'd like to use to display instapaper articles to the user in my WinJS "store" app. A very high-priority feature of this is that users should be able to read articles downloaded ...
2
votes
1answer
249 views

Display html in Windows Store app

I am trying to display an html in my Windows Store app (C#/XAML). But I cannot find an appropriate way to display it with the transparent background. Is there any way to get to know app background ...