Sorry Adam, my stupid fault...
Now I'm using the JQueryUI Extension (in this case i have downloaded
the right version!!!)
I create a simple Autocomplete control and i successfully build the
project. But when i run the web application i get this error:
"pagelet is undefined" at row 59 of
IntelliFactory.WebSharper.Web.dll.js
Here is my simple code:
namespace WebSharperProject
open IntelliFactory.WebSharper
open IntelliFactory.WebSharper.Html
open IntelliFactory.WebSharper.Formlet
open IntelliFactory.WebSharper.Formlet.JQueryUI
module JQueryFormlet =
[<JavaScript>]
let Main = Controls.Autocomplete "" ["a";"b";"c"] |> Formlet.Map
ignore
type myApp () =
inherit Web.Control()
[<JavaScript>]
override this.Body = JQueryFormlet.Main :> _
Any semantic error?