yesod-form-1.2.1: Form handling support for Yesod Web Framework

Safe HaskellNone

Yesod.Form.Jquery

Description

Some fields spiced up with jQuery UI.

Synopsis

Documentation

class YesodJquery a whereSource

Methods

urlJqueryJs :: a -> Either (Route a) TextSource

The jQuery Javascript file. Note that in upgrades to this library, the version of jQuery referenced, or where it is downloaded from, may be changed without warning. If you are relying on a specific version of jQuery, you should give an explicit URL instead of relying on the default value.

Currently, the default value is jQuery 1.7 from Google's CDN.

urlJqueryUiJs :: a -> Either (Route a) TextSource

The jQuery UI 1.8 Javascript file.

urlJqueryUiCss :: a -> Either (Route a) TextSource

The jQuery UI 1.8 CSS file; defaults to cupertino theme.

urlJqueryUiDateTimePicker :: a -> Either (Route a) TextSource

jQuery UI time picker add-on.

googleHostedJqueryUiCss :: Text -> TextSource

Gets the Google hosted jQuery UI 1.8 CSS file with the given theme.

class Default a where

A class for types with a default value.

Methods

def :: a

The default value for this type.