The web platform based on an F# to JavaScript compiler.
4
votes
1answer
98 views
Accessing JavaScript's this from WebSharper
I feel a bit dumbfounded at how I have yet to find how to access the JavaScripts this keyword from WebSharper client code.
I tried something like this:
[<Inline "$this">]
let this() = ...
0
votes
1answer
56 views
websharper for VS Express 2012
Is it possible to use WebSharper with VS Express 2012?
I read Websharper templates for F# Tools for Visual Studio 2012 Express for Web and wanted to try. So I installed WebSharper, then found folder ...
1
vote
0answers
74 views
WebSharper is unable to decode a function parameter of a record type
WebSharper 2.5.8-alpha seems to be unable to process a function with a parameter of a record type.
My code is fairly simple:
type Foo =
{
Name: string
Num: int
}
[<Rpc>]
let Bar (foo: ...
2
votes
2answers
78 views
Make WebSharper generate simple field access
I need a type that will be translated into a plain JS object so that F# field access will be translated into simple JS field access (this is necessary, since the object will be sent through ...
5
votes
3answers
151 views
Is there any way to use JavaScript attribute by default?
I just want somehow to say "I want all methods in this project use [JavaScript]"
Manually annotation every method is annoying
2
votes
1answer
104 views
F# quotations, arrays and self-identifier in constructors
I think that's a well-known limitation of F# but I couldn't find any good workarounds…
So, here is the code (I tried to make it as simple as possible, so probably it looks like it doesn't make any ...
2
votes
1answer
101 views
Converting between integer types in WebSharper
It seems that WebSharper has some difficulties converting between integer types (say, int32 to uint64). I get this:
error : Failed to translate a method call: ToUInt64(..) ...
1
vote
1answer
129 views
Google Maps Heatmap in Websharper?
I'm evaluating Websharper, and the project I'm doing is all about heat maps in Google Maps.
Is it possible to use the Google Maps extension for Websharper to display heatmaps?
I'm not using Fusion ...
2
votes
1answer
25 views
Modify Controls.Input width in websharper
I tried to modify Controls.Input size in Websharper, by using Enhance.WithCssClass unsuccessfully. The max-length in the css was applied to the whole control, and not to the Input markup.
How can I ...
2
votes
0answers
138 views
Is it possible and feasable to extend websharper to support decimal datatype?
I am looking for a framework that will generate Javascript for the client side, and i am willing to learn more F# to do this.
It is mandatory to have a decimal fully compatible datatype in Javascript
...
2
votes
1answer
168 views
How can I create a slider using Websharper?
I'm just learning Websharper so I'm still quite confused.
On the Intellifactory samples webpage the code for the calculator sample seems to use Button as if Webshaper provides some GUI controls but ...
1
vote
3answers
206 views
Real-time client-server interactivity using Websharper
I'm just learning Websharper but, in the short term, I have a business problem that I am trying to solve. I've written a server and WPF-based client that allows the user to vary inputs using controls ...
2
votes
1answer
101 views
Cannot find '/Scripts/IntelliFactory.WebSharper.dll.js' in very basic WebSharper application
I'm developing a very simple WebSharper application and am having difficulties when running it.
My F#/WebSharper library contains Main.fs with the following:
namespace Sandbox35.FsLib
open ...
1
vote
1answer
152 views
Capturing keyboard input Websharper
I'd like to get the keyboard input of a user in Websharper for an entire page (or whatever gets me closest), and I can't see any nice way of doing this.
I've attempted something along the lines of
...
3
votes
0answers
202 views
How can I build WebSharper on Mono 3.0 on Mac?
WebSharper looks interesting, and Mono 3.0 is just out with F# 3.0. Apparently xbuild can build some MSBuild projects. Straightforward attempt at building a WebSharper clone on mono fails since ...
2
votes
1answer
177 views
Possible to use websharper as a drop-in JS replacement?
Is it possible to use websharper as a drop-in replacement for javascript without the additional complexity of sitelets or ASP.NET?
For example, can I compile the following websharper library to a .js ...
17
votes
2answers
829 views
Websharper - should I invest time and bind myself to it or use C#/plain F# for Web development + new TypeScript for JS [closed]
Probably this question is not very constructive for gurus as most of you are, but I have spent a lot of time recently trying to decide on what technology to focus next for several years ahead. This is ...
3
votes
1answer
119 views
Submit with enter key
Is there an idiomatic way for me trigger my formlet's submit action when a keydown event is pressed?
Should I drop back down to DOM manipulation, or is there some Enhancement that I can use?
0
votes
1answer
200 views
Using the WebSharper compiler to write Node.js applications [closed]
I was wondering if it is possible to use the WebSharper compiler to write Node.js applications in F#. Are there any resources available that could show me how to do this? Are there any good reasons ...
4
votes
0answers
173 views
Websharper on mono [closed]
Simple question: Is it possible to host websharper applications on mono. If not, are there any plans to support such a feature?
0
votes
1answer
107 views
kendoui websharper and failed to access method from another model
Learning something new is always following something what already exists. So I reconfigure this example (http://www.websharper.com/samples/KendoChart) which works fine. (only graph on line 12. I ...
1
vote
1answer
147 views
websharper element ids
We plan to use WebSharper for our web interface. The problem is that our integration tests are based on selenium and use the ids of the page elements for clicking and filling data.
For this reason we ...
0
votes
2answers
353 views
f# .net framework 4.0 and typeproviders
Well my third question on stack and again about same topic :-)
So I decided to upload my application built in websharper on appharbor but of course there is a problem. After trying to use visual ...
1
vote
1answer
130 views
Typeproviders, websharper, f#, builiding order
So I have added some data using typeproviders into my applications (github link)
So here is the problem.
1) What I wanted is that my Site.fs use data and build div according to rules I gave it. ...
1
vote
1answer
181 views
Deploy WebSharper 2.4 sitelet on IIS7.5
I created a websharper sitelet project from Visual Studio 2012, which I called SiteletTest.
I compiled this project.
Then I copied SiteletTest/Web to inetpub/wwwroot.
Then I go to ...
2
votes
1answer
211 views
Any work on Scala that is similar to WebSharper
I was reading some articles from here: http://tomasp.net/blog/qcon-async-fsharp.aspx, about having all the source code in F# that would then compile to generate the javascript, so it can do ...
2
votes
1answer
217 views
Problems with simple example on WebSharper's official site
I have downloaded and installed the latest version of WebSharper. On this page there is an example, in which one of the lines is as follows:
let HomePage =
Template "HomePage" <| fun ctx ...
2
votes
1answer
123 views
How do I generate data for Google Visualizations on the server using WebSharper
My goal is to be able to generate data for a Google Visualizations on the server, and then pass it to the client as java script so that it can be rendered as a line chart. My example below compiles ...
0
votes
1answer
100 views
Websharper and VS 2010 shell
Does anyone know how to use Websharper with VS shell? I understand that the Websharper developers recognise this and intend to add it to future releases ?: ...
0
votes
1answer
307 views
F# 3 support for WebSharper
I'm defining a DU for the various classes I use within HTML:
type Class =
| Logo
| Screen
| Continue
Now unfortunately FSharpValue.GetUnionFields doesn't translate to JS (I wouldn't ...
1
vote
1answer
154 views
WebSharper Minimum Browser Requirements
So . . . I have been playing around with WebSharper recently and wanted to check something at work. So, I loaded up IE7, our browser, to go to the WebSharper samples page - ...
3
votes
1answer
129 views
Protecting multiple, parameterized pages
The sample sitelet project template shows how to protect a single, non-parameterized page. I've googled around a bit, perused WebSharper's website, etc and can't figure out how to protect multiple, ...
1
vote
1answer
287 views
is possible use external javascript libraries with Pit or Websharper?
I'm interesting in found an alternative to javascript (I don't like coffeescript) and I like the functional paradigm.
I've seen 2 f# projects than compile code to javascript, pit and websharper, pit ...
5
votes
3answers
1k views
Has anyone used WebSharper on any full projects?
It looks like quite a cool idea, but a cursory google search finds nothing but code snippets: no "large" projects that are made purely using WebSharper, that would serve as a sanity check "this really ...
1
vote
1answer
128 views
WebSharper Interface Generator - Records
How do I go about defining a record that would be serialized to a JSON object... I've been trying to build the oConfig parameter for YUI2 constructor, something like:
type TreeParameter =
{
...
0
votes
1answer
139 views
WebSharper's Enhance.WithResetAction
I built a WebSharper formlet using the combinators, but my goal is to embed it in a jQueryUI pop-up. As a consequence I need to be able to close the dialog when the user clicks no, the following ...
1
vote
1answer
97 views
WebSharper force a message passing call to be asynchronous
Knowing an RPC call to a server method that returns unit is a message passing call, I want to force the call to be asynchronous and be able to fire the next server call only after the first one has ...
0
votes
1answer
145 views
Websharper can't deserialize union type
I have the following client code:
|>! OnClick (fun _ _ -> Server.CreateBug input.Value |> Server.SendCommand)
Here's the type and server code:
type Command =
| CreateBug of string
...
1
vote
1answer
196 views
Websharper configuration on IIS 7.5
Does anyone know how to configure Websharper 1.0 or 2 (sitelets) on IIS 7.5?
This helps on IIS Express at least
An ASP.NET setting has been detected that does not apply in Integrated managed pipeline ...
0
votes
1answer
242 views
problem deploying websharper F# web application
I am trying the websharper demonstrations, however I get the following error:-
HTTP Error 500.22 - Internal Server Error
An ASP.NET setting has been detected that does not apply in Integrated managed ...
4
votes
1answer
310 views
F# Web Role Azure
I like to create a webapplication with websharper in F#. Azure 1.4 SDK only includes a F# worker role. How can I create a Azure web role in F#?
Does anybody know how to create a template or change ...
4
votes
1answer
256 views
How to work WebSharper translator?
Could anyone explain how to work WebSharper translator in conjunction with the F#?
Is it translate F# code to JS itself or using F# compiler for it?
In second case, what F# compiler are doing when ...
9
votes
5answers
618 views
Should writing Javascript be avoided in favour of GWT/WebSharper or some other abstraction?
I'm curious what's the view on "things that compile into javascript" e.g. GWT, Script# and WebSharper and their like. These seem to be fairly niche components aimed at allowing folks to write ...
6
votes
2answers
415 views
Static page with Websharper?
I have been looking into Websharper, and was wondering if it's possible to use it for static web apps. That is, not hosted in IIS, but as a static web page with javascript.
