Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have the following dataset that is already outputted in Rmarkdown HTML but I am unable to disable search for certain columns

enter image description here

What I would like to do is the for the have contingent filter so if Group AAA is selected only display ID record for that AAA. Currently, it shows me everything

datatable(head(Group),
        options = list(columnDefs = 
                        list(list(className = 'dt-center', 
                                    targets = "_all")),
        initComplete = JS(
"function(settings, json) {",
"$(this.api().table().header()).css({'background-color': '#9bcb51', 'color': '#000'});",
"}")))

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.9k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...