Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

209
Views
Preverifique los botones de radio en la salida de la tabla de datos en la aplicación brillante

Estoy creando una aplicación brillante y me gustaría que la tabla DT que estoy usando tenga botones de radio preverificados, que luego el usuario puede cambiar si es necesario. Por ejemplo, en este ejemplo: https://yihui.shinyapps.io/DT-radio/ , me gustaría que todos los meses tuvieran "A" preseleccionada, que los usuarios pueden cambiar de "B" a "E" o simplemente mantener una".

¿Qué debo cambiar en el código para que eso suceda?

 library(shiny) library(DT) shinyApp( ui = fluidPage( title = 'Radio buttons in a table', DT::dataTableOutput('foo'), verbatimTextOutput('sel') ), server = function(input, output, session) { m = matrix( as.character(1:5), nrow = 12, ncol = 5, byrow = TRUE, dimnames = list(month.abb, LETTERS[1:5]) ) for (i in seq_len(nrow(m))) { m[i, ] = sprintf( '<input type="radio" name="%s" value="%s"/>', month.abb[i], m[i, ] ) } m output$foo = DT::renderDataTable( m, escape = FALSE, selection = 'none', server = FALSE, options = list(dom = 't', paging = FALSE, ordering = FALSE), callback = JS("table.rows().every(function(i, tab, row) { var $this = $(this.node()); $this.attr('id', this.data()[0]); $this.addClass('shiny-input-radiogroup'); }); Shiny.unbindAll(table.table().node()); Shiny.bindAll(table.table().node());") ) output$sel = renderPrint({ str(sapply(month.abb, function(i) input[[i]])) }) } )
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Tienes que agregar el atributo checked en la primera columna:

 for (i in seq_len(nrow(m))) { m[i, 1] = sprintf( '<input type="radio" name="%s" value="%s" checked/>', month.abb[i], m[i, 1] ) m[i, 2:5] = sprintf( '<input type="radio" name="%s" value="%s"/>', month.abb[i], m[i, 2:5] ) }
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!