Ag-grid clojurescript排序键不工作。

问题描述 投票:0回答:1

我想用ag-grid做一个grid,并激活sortable和filter,但对localhost不起作用。在columndefinition中,我使用了''':sortable true''''':filter true'''。

但是什么都没有发生。有谁知道是什么问题吗?enter image description here

(ns reagent-ag-grid-ex.core
    (:require
     [reagent.core :as r]
     [cljsjs.ag-grid-react]
     [reagent-ag-grid-ex.state :as state]))

;; -------------------------
;; Views

(def ag-adapter (r/adapt-react-class (.-AgGridReact js/agGridReact) ))


;;(defn get-cols [entry]
;;  (into [] (map #(hash-map :headerName (-> % key name) :field (-> % key name)) entry)))
;;columnDefs: [ {headerName: "Make", field: "make"}, {headerName: "Model", field: "model"}, {headerName: "Price", field: "price"} ]
;;rowData: [ {make: "Toyota", model: "Celica", price: 35000}, {make: "Ford", model: "Mondeo", price: 32000}, {make: "Porsche", model: "Boxter", price: 72000}]

(def deafult-col-w 200)

(defn width-helper [lst]
  (+ (* deafult-col-w (count lst)) 2))

(defn home-page []
  [:div [:h2 "Ekspono tag-model"]
   [:p "My portfolio / Top Index " [:a {:style {:background-color "#C0C0C0" :float "right" :color "black"} 
                                        :href "https://www.google.com" :target "_blank"} "Show problems"]]
   [:div {:className "ag-theme-balham" :style {:height 200 :width (width-helper state/cols) :color "purple"}}
    [ag-adapter {"columnDefs"  state/cols 
                 "rowData" state/rows
                 "defaultColDef" {:sortable true
                                  :width deafult-col-w}}]]

   [:div [:a {:href "https://www.tabyenskilda.se/fredrik-cumlin/" :target "_blank"} 
          "@copyright Fredrik Cumlin"]]])

;; -------------------------
;; Initialize app

(defn mount-root []
  (r/render [home-page] (.getElementById js/document "app")))

(defn init! []
  (mount-root))

ag-grid clojurescript reagent
1个回答
0
投票

升级到最新的ag-grid-react cljsjs发行版(21.0.1-1)--例如使用lein project.clj switch dep to [cljsjs/ag-grid-react "21.0.1-1"]. 在这个版本上应该能用。

还有一点,不需要用字符串来指定道具键,你可以使用关键字--这更习惯。

© www.soinside.com 2019 - 2024. All rights reserved.