Shinyjqui: jQuery UI Interactions and Effects for Shiny









jQuery UI Library

jQuery UI est une bibliothèque JavaScript basée sur jQuery
jquery ui library fr


Performance Center Quick Start Guide

Technical Data for Commercial Items are licensed to the U.S. Government under vendor's standard What does the Performance Test Run page display?
quick start


Control of a robotic arm using an Omega2+ module

.center { display: inline-block; width: 25%; height: 450px} jquery.ui.datepicker.css jquery.ui.dialog.css
tfg annex daniel v zquez


jquery-ui-library.pdf

Modal dialogs create an overlay below the dialog but above other page elements. position. (Object) [Default: { my: "center" at: "center"
jquery ui library





shinyjqui: 'jQuery UI' Interactions and Effects for Shiny

3 févr. 2022 jqui_show(): Display the matched element(s) with animation effect. ... A modified shiny modal dialog UI with its content draggable.
shinyjqui


Cisco Webex Contact Center 1.0 Campaign Manager User Guide

2 déc. 2020 Directory paths. For example: C:Program FilesAdobe window font. Cisco Webex Contact Center 1.0 Campaign Manager User Guide.
webexcc b campaign manager user guide


Cisco Webex Contact Center Setup and Administration Guide

2 déc. 2020 https://www.cisco.com/c/en/us/about/legal/trademarks.html. ... IVR and CVA Dialog Flow Report in Analyzer 349 ... https://jquery.com:443.
b mp release


Cisco DNA Center Platform User Guide Release 2.2.3

4 août 2021 https://www.cisco.com/c/en/us/about/legal/trademarks.html. ... If you want to skip this screen in the future check the Don't show this to ...
b dnac platform ug





Connect CDC SQData - Control Center Reference

jQuery - Used to make requests from Javascript to the back end The Control Center supports user defined Display and Notification Groups independent of ...
V Control Center Reference


Cisco DNA Center Platform User Guide Release 2.2.2

23 avr. 2021 Configurations: Access to a window to configure global settings for a single bundle or across multiple bundles for a custom platform experience.
b dnac platform ug


214935 shinyjqui: jQuery UI Interactions and Effects for Shiny

Package 'shinyjqui"

October 14, 2022

TypePackage

Title"jQuery UI" Interactions and Effects for Shiny

Version0.4.1

MaintainerYang Tang

DescriptionAn extension to shiny that brings interactions and animation effects from "jQuery UI" library.

LicenseMIT + file LICENSE

EncodingUTF-8

DependsR (>= 3.2.0)

Importsshiny (>= 1.5.0), htmltools, htmlwidgets, jsonlite, rlang Suggestsggplot2, highcharter, knitr, markdown, rmarkdown, plotly

URLhttps://github.com/yang-tang/shinyjqui,

https://yang-tang.github.io/shinyjqui/ BugReportshttps://github.com/yang-tang/shinyjqui/issues

RoxygenNote7.1.2

VignetteBuilderknitr

NeedsCompilationno

AuthorYang Tang [aut, cre]

RepositoryCRAN

Date/Publication2022-02-03 07:00:02 UTC

Rtopics documented:

Animation_effects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2 Class_effects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 draggableModalDialog . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 get_jqui_effects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 Interactions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 jqui_bookmarking . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 1

2Animation_effects

jqui_icon . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 jqui_position . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 orderInput . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 selectableTableOutput . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 sortableCheckboxGroupInput . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 sortableRadioButtons . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 sortableTableOutput . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17 sortableTabsetPanel . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 updateOrderInput . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 Index21Animation_effectsAnimation effects.Description

Allow element(s) to show animation effects.

•jqui_effect(): Apply an animation effect to matched element(s). •jqui_hide(): Hide the matched element(s) with animation effect. •jqui_show(): Display the matched element(s) with animation effect. •jqui_toggle(): Display or hide the matched element(s) with animation effect. Usage jqui_effect(ui, effect, options = NULL, duration = 400, complete = NULL) jqui_show(ui, effect, options = NULL, duration = 400, complete = NULL) jqui_hide(ui, effect, options = NULL, duration = 400, complete = NULL) jqui_toggle(ui, effect, options = NULL, duration = 400, complete = NULL)

Arguments

uiThe target ui element(s) to be manipulated. Can be

A string of

jQuery_selector A JS() wrapped ja vascripte xpressionthat returns a jQuery object effectA string indicating whichanimation ef fectto use for the transition. optionsA list of effect-specificproperties and easing . durationA string or number determining how long the animation will run. completeA function to call once the animation is complete, called once per matched ele- ment.

Class_effects3

Details

These functions are R wrappers ofeffect(),hide(),show()andtoggle()from jQuery UI li- brary. They should be used inserverof a shiny document.

Examples

## Not run: # in shiny ui create a plot plotOutput(?foo?) # in shiny server apply a?bounce?effect to the plot jqui_effect(?#foo?,?bounce?) # in shiny server hide the plot with a?fold?effect jqui_hide(?#foo?,?fold?) # in shiny server show the plot with a?blind?effect jqui_show(?#foo?,?blind?) ## End(Not run)Class_effectsClass effects.Description Manipulate specified class(es) to matched elements while animating all style changes. •jqui_add_class(): Add class(es). •jqui_remove_class(): Remove class(es). •jqui_switch_class(): Switch class(es). Usage jqui_add_class( ui, className, duration = 400, easing = "swing", complete = NULL jqui_remove_class( ui, className, duration = 400, easing = "swing",

4Class_effects

complete = NULL jqui_switch_class( ui,

Package 'shinyjqui"

October 14, 2022

TypePackage

Title"jQuery UI" Interactions and Effects for Shiny

Version0.4.1

MaintainerYang Tang

DescriptionAn extension to shiny that brings interactions and animation effects from "jQuery UI" library.

LicenseMIT + file LICENSE

EncodingUTF-8

DependsR (>= 3.2.0)

Importsshiny (>= 1.5.0), htmltools, htmlwidgets, jsonlite, rlang Suggestsggplot2, highcharter, knitr, markdown, rmarkdown, plotly

URLhttps://github.com/yang-tang/shinyjqui,

https://yang-tang.github.io/shinyjqui/ BugReportshttps://github.com/yang-tang/shinyjqui/issues

RoxygenNote7.1.2

VignetteBuilderknitr

NeedsCompilationno

AuthorYang Tang [aut, cre]

RepositoryCRAN

Date/Publication2022-02-03 07:00:02 UTC

Rtopics documented:

Animation_effects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2 Class_effects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 draggableModalDialog . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 get_jqui_effects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 Interactions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 jqui_bookmarking . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 1

2Animation_effects

jqui_icon . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 jqui_position . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 orderInput . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 selectableTableOutput . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 sortableCheckboxGroupInput . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 sortableRadioButtons . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 sortableTableOutput . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17 sortableTabsetPanel . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 updateOrderInput . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 Index21Animation_effectsAnimation effects.Description

Allow element(s) to show animation effects.

•jqui_effect(): Apply an animation effect to matched element(s). •jqui_hide(): Hide the matched element(s) with animation effect. •jqui_show(): Display the matched element(s) with animation effect. •jqui_toggle(): Display or hide the matched element(s) with animation effect. Usage jqui_effect(ui, effect, options = NULL, duration = 400, complete = NULL) jqui_show(ui, effect, options = NULL, duration = 400, complete = NULL) jqui_hide(ui, effect, options = NULL, duration = 400, complete = NULL) jqui_toggle(ui, effect, options = NULL, duration = 400, complete = NULL)

Arguments

uiThe target ui element(s) to be manipulated. Can be

A string of

jQuery_selector A JS() wrapped ja vascripte xpressionthat returns a jQuery object effectA string indicating whichanimation ef fectto use for the transition. optionsA list of effect-specificproperties and easing . durationA string or number determining how long the animation will run. completeA function to call once the animation is complete, called once per matched ele- ment.

Class_effects3

Details

These functions are R wrappers ofeffect(),hide(),show()andtoggle()from jQuery UI li- brary. They should be used inserverof a shiny document.

Examples

## Not run: # in shiny ui create a plot plotOutput(?foo?) # in shiny server apply a?bounce?effect to the plot jqui_effect(?#foo?,?bounce?) # in shiny server hide the plot with a?fold?effect jqui_hide(?#foo?,?fold?) # in shiny server show the plot with a?blind?effect jqui_show(?#foo?,?blind?) ## End(Not run)Class_effectsClass effects.Description Manipulate specified class(es) to matched elements while animating all style changes. •jqui_add_class(): Add class(es). •jqui_remove_class(): Remove class(es). •jqui_switch_class(): Switch class(es). Usage jqui_add_class( ui, className, duration = 400, easing = "swing", complete = NULL jqui_remove_class( ui, className, duration = 400, easing = "swing",

4Class_effects

complete = NULL jqui_switch_class( ui,