首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏前端小歌谣

    react-admin+material ui5.0项目的总结

    > <ReferenceInput source="style_id" reference="t_prod_style" > <SelectInput disabled defaultValue={StyleContext.styleId}></SelectInput> </ReferenceInput> mat_type: StyleContext.typeId }} source="mat_id" reference="t_base_materiel" > <SelectInput disabled></SelectInput> </ReferenceInput> <ReferenceInput source="mat_id " filter={{ mat_type: StyleContext.typeId }} reference="t_base_materiel" > <SelectInput

    99230编辑于 2023-10-18
  • 来自专栏TDesign 技术视野・开发篇

    TDesign 更新周报(2022 年 3 月第 4 周)

    多次触发导致异常关闭的问题 Progress: 修复 theme = plump 且 percent = 10 时没有展示文案的问题 Form: 修复不能在表单项内换行输入的问题 Datepicker/Timepicker/SelectInput 支持重复文件名的文件上传 详情见:https://github.com/Tencent/tdesign-vue/releases/tag/0.38.0 Vue2 for Web 发布 0.38.1 版 Bug Fixes SelectInput : 实现 enter 事件 Features SelectInput: 修复单选可输入状态下的 focus 时 input value 的错误 详情见:https://github.com/Tencent 可过滤状态下的下拉面板拉起闪烁,可过滤状态下的输入内容未被正常销毁 TimePicker: 修复此刻快捷标签文案配置, focused 态样式修复 Upload: 修复 method props 失效 SelectInput 外部传入样式挂载至 t-input__wrap, 如需挂载到 t-input,请使用 inputClass api Bug Fixes Select: Option 子组件配合自定义 keys 使用异常 Selectinput

    1.3K30编辑于 2022-03-29
  • 来自专栏逆锋起笔

    组件封装之输入框下拉列表

    组件布局: <template>

    <Input type 样式: .selectInput { position: relative; .input-dropdown { min-width: 200px; position 下拉列表的搜索逻辑 <template>
    <Input :dropdownList="personnelList"></select-input>
    </template> <script> /* 引入输入下拉组件 */ import selectInput /component/selectInput'; export default { name: 'blog', components: { selectInput

    2.7K40发布于 2021-05-18
  • 来自专栏数据驱动实践

    创建自己的第一个shiny项目

    },res = 96) # point graph SERVER ## 创建交互变量选择窗口 renderUI output$variable_x <- renderUI({ selectInput variableNames_x", label = "Variable_X", choices = names(dataset())) }) output$variable_y <- renderUI({ selectInput variableNames_y", label = "Variable_Y", choices = names(dataset())) }) output$variable_z <- renderUI({ selectInput ) }) # hist graph SERVER ## 创建交互变量选择窗口 renderUI output$hist_variable_x <- renderUI({ selectInput label = "Variable_X", choices = names(dataset())) }) output$hist_variable_z <- renderUI({ selectInput

    1.4K20编辑于 2022-03-14
  • 来自专栏数据小魔方

    用R-Shiny打造一个美美的在线App

    cerulean"), titlePanel("Population Structure Data"), sidebarLayout( sidebarPanel( selectInput x-axis",c("agegroup"="agegroup","Poputation"="Poputation","sex"="sex"),selected="agegroup"), selectInput ,c("agegroup"="agegroup","Poputation"="Poputation","sex"="sex"),selected="Poputation"), selectInput Gender",c("agegroup"="agegroup","Poputation"="Poputation","sex"="sex"),selected="sex"), selectInput

    1.5K61发布于 2018-04-11
  • 来自专栏TDesign 技术视野・开发篇

    TDesign 更新周报(2022年3月第1周)

    组件库 Vue2 for Web 发布 0.36.0 版 Input: input 元素 ref 更名,存在不兼容更新 Upload 支持单请求上传批量文件 新增 SelectInput 和 TagInput Datepicker 等组件问题 详情见:https://github.com/Tencent/tdesign-vue/releases/tag/0.36.0 Vue3 for Web 发布 0.9.3 版 新增组件SelectInput getAllFieldsValue API,支持 setValidateMessage & errorMessage Upload: 支持 onCancelUpload & onSelectChange SelectInput allowInput 无效问题 Affix:修复 affix 导出问题 InputNumber: 修复加减按钮超出 min、max 的边界问题 Dialog:支持使用 Esc 按键关闭 TreeSelect: 使用 SelectInput

    1.2K20编辑于 2022-03-08
  • 来自专栏优雅R

    「R」第一个Shiny应用(二) 添加控件

    selectInput() 是让用户可以选择的输入控件。 包 library(shiny) ui = fluidPage( ## UI 控件一般使用 ## xxInput:用于用户输入 ## 或 ## xxOutput:用于结果展示 selectInput

    79210发布于 2020-07-06
  • 来自专栏生信菜鸟团

    Seurat Weekly NO.08 || Seurat 交互系统

    label = "Assay", choices = assays.use, selected = assay, selectize = FALSE, width = "100%"), selectInput label = feature.label, choices = features, selected = feature, selectize = FALSE, width = "100%"), selectInput = Reductions(object = object), selected = reduction, selectize = FALSE, width = "100%"), selectInput choices = dims.reduc, selected = as.character(x = dims[1]), selectize = FALSE, width = "100%"), selectInput choices = dims.reduc, selected = as.character(x = dims[2]), selectize = FALSE, width = "100%"), selectInput

    1.6K20发布于 2021-02-03
  • 来自专栏小菜与老鸟

    Processing玩转国庆头像生成

    currentSelectedCoverImage, 0, 0); avatarLayer.popMatrix(); avatarLayer.endDraw(); ... } 头像的选择 这里涉及到一个文件选择器的使用,API 为selectInput 函数的用法为selectInput(prompt, callback),第一个参数是提示语,第二个参数是一个回调函数名称,也就是选择结束后要执行的函数。 void keyPressed() { if (key == 'c' || key == 'C') { selectInput("选择头像文件(png/jpg/jpeg格式)", "fileSelected

    88320发布于 2021-10-14
  • 来自专栏数据驱动实践

    R语言 shiny包中的交互调用函数renderUI

    renderPrint({ req(input$file1) summary(data()) } ) output$variable_x <- renderUI({ selectInput variableNames_x", label = "Variable_X", choices = names(data())) }) output$variable_y <- renderUI({ selectInput

    4.3K30发布于 2021-05-31
  • 来自专栏火星娃统计

    shiny学习-2

    be added to an input form numericInput A field to enter numbers radioButtons A set of radio buttons selectInput "Choice 3" = 3),selected = 1)), column(3,#选择窗口 selectInput helpText("Create demographic maps with information from the 2010 US Census."), selectInput

    2.7K20发布于 2020-09-15
  • 来自专栏优雅R

    「R」Shiny:用户界面(一)输入控件

    选择列表 selectInput() 和 radioButtons() 是两种不同的创建选择列表方法。 animals = c("dog", "cat", "mouse", "bird", "other", "I hate animals") ui = fluidPage( selectInput( 使用 selectInput() 创建的下拉列表由于所占的空间固定,非常适用于长列表。如果设定了 multiple = TRUE,还支持多选。 ui <- fluidPage( selectInput( "state", "What's your favourite state?"

    6.1K20发布于 2020-07-06
  • 来自专栏TDesign 技术视野・开发篇

    TDesign 更新周报(2022年3月第2周)

    releases/tag/0.10.0 React for Web 发布 0.27.0 版 Input: DOM 结构调整,最外层调整为 t-input__wrap,⚠️存在不兼容更新 Select: 使用 SelectInput 修复高度渲染判断问题,SubMenu 支持 className Cascader: 修复子节点重复渲染问题 Loading: 修复指令调用后锁屏样式未移除问题 Radio: 修复动态渲染滑块未展示问题 SelectInput 样式问题 InputNumber: 快速加减优化 Message: 支持 className Tabs: 支持 destroyOnHide TagInput: 优化拖拽功能 Select: 使用 SelectInput

    1.2K30编辑于 2022-03-14
  • 来自专栏生信技能树

    基于R语言的shiny网页工具开发基础系列-03

    selectInput 试试把下面的代码运行一下吧 library(shiny) # Define UI ---- ui <- fluidPage( titlePanel("Basic widgets "Choice 3" = 3),selected = 1)), column(3, selectInput sidebarPanel( p("Create demographic maps with information from the 2010 US Census."), br(), selectInput

    3.3K20发布于 2021-02-03
  • 来自专栏前端小歌谣

    关于react-admin+postgrest小案例

    CustomRoutes> </Admin> 增加 import * as React from 'react'; import { Create, ReferenceInput, SelectInput SimpleForm> </Create> ) } 编辑 import * as React from 'react'; import { Create, ReferenceInput, SelectInput

    47920编辑于 2023-10-18
  • 来自专栏单细胞天地

    R : Shiny|搭建单细胞数据分析云平台

    ');}") )) output$cluster<-renderUI({ clusterlist<-unique(pb@meta.data$seurat_clusters) selectInput '.rds')), conditionalPanel( condition = "input.smoother == ture", selectInput ), conditionalPanel( condition = "input.cluster == ture", selectInput meta.data$seurat_clusters) ), conditionalPanel( condition = "input == ture", selectInput

    4.6K20发布于 2020-03-27
  • 来自专栏叶子的数据科技专栏

    在ChatGPT帮助下创造简单的shinyAPP

    sidebarPanel( # 输入疾病名称或疾病列表 textInput("diseases", "输入疾病名称,用逗号分隔:", ""), # 选择分析方法 selectInput 输入疾病A名称:", ""), # 输入疾病B textInput("disease_b", "输入疾病B名称:", ""), # 选择相似度计算方法 selectInput textInput("term_a", "输入术语集a,用逗号分隔:", ""), textInput("term_b", "输入术语集b,用逗号分隔:", ""), selectInput

    2.4K20编辑于 2023-03-16
  • 来自专栏BioIT爱好者

    如何在 5 分钟内建立一个数据驱动的新型冠状病毒肺炎应用程序

    将所有内容打包到 fluidPage 函数中: # Define UI for application ui <- fluidPage( selectInput("country", label multiple = TRUE, choices = unique(covid19()$administrative_area_level_1), selected = "Italy"), selectInput ("type", label = "type", choices = c("confirmed", "tests", "recovered", "deaths")), selectInput("

    1.2K50发布于 2021-10-15
  • 来自专栏生物信息学、python、R、linux

    Shiny学习(四)||响应式输出

    ."), selectInput("var", label = "Choose a variable to display", ("Create demographic maps with information from the 2010 US Census."), selectInput

    2.2K30发布于 2020-05-18
  • 来自专栏数据分析1480

    基于shinydashboard搭建你的仪表板(四)

    library(shinydashboard)library(ggplot2)body <- dashboardBody( fluidRow( box(selectInput shinydashboard)library(ggplot2)library(DT) body <- dashboardBody( fluidRow( column(width = 5, box(selectInput library(shiny)library(shinydashboard)library(ggplot2)body <- dashboardBody( fluidRow( box(selectInput

    1.5K10发布于 2019-05-30
领券