AllenFang / AllenFang/react-bootstrap-table

Programmatically enable custom editor to a cell

オープン
#877 コメント 5 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
JavaScript
スター
2.2k
フォーク
761
PR マージ指標
30日以内にマージされた PR はありません

説明

While rendering data in table I am adding a custom editor to each cell based on its data type, but default they should be non editable mode,
var selectRowProp = {
mode: "radio",
clickToSelect: true,
onSelect: (row, isSelected,evt) => {
if(evt.target.parentElement.nodeName =="TR") {
$(evt.target.parentElement).find("td").attr("editable",true);
}
};


text
< /TableHeaderColumn>
< /BootstrapTable>

So in above code and editable=false to make it non editable initially,
after selection of that row i want make enable the custom editor, So I am enabling the cells in onSelect event as mentioned above in selectRowProp, but it's not working

Please let me know what i am doing is correct or not

Thanks in advance

コントリビューションガイド

コントリビューションガイドを開く

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。