有沒有可能取消選擇一行而沒有按住控制鍵,只能通過點擊它?我的意思是,如果你點擊一個已經選擇的行,它應該取消選擇,而不必按住控制鍵。Rowunselect沒有按Ctrl +點擊
4
A
回答
2
我與Primefaces 3.4.2測試: XHTML頁面:
<script type="text/javascript">
function test(xhr, status, args){
if(args.unselecttest % 2 == 1){
stest.unselectAllRows();
}
}
</script>
<p:dataTable widgetVar="stest" selectionMode="single" selection="#{tabview.car}"
<p:ajax event="rowSelect" oncomplete="test(xhr, status, args);" />
豆:
private int count = 0;
public Car getCar() {
return car;
}
public void setCar(Car car) {
if (car.equals(this.car)) {
count++;
RequestContext reqCtx = RequestContext.getCurrentInstance();
reqCtx.addCallbackParam("unselecttest", count);
} else {
count = 0;
}
this.car = car;
}
-1
使用jquery切換功能。
$(selector).toggle();
+0
你能更具體的pleasa嗎?我正在使用primefaces datatable順便說一句。 – leostiw 2013-04-18 06:59:38
0
我得到了sollution。
我剛剛覆蓋了primefaces.js,實際上,我只是複製了Primefaces.Datatable的一部分,只是刪除了使用CtrlKey取消選擇該行所需的條件。
下面的例子:
原始的JavaScript的報價:
onRowClick: function (e, d, a) {
if ($(e.target) .is('td,span:not(.ui-c)')) {
var g = $(d),
c = g.hasClass('ui-state-highlight'),
f = e.metaKey || e.ctrlKey,
b = e.shiftKey;
if (c && f) {
this.unselectRow(g, a)
} else {
if (this.isSingleSelection() || (this.isMultipleSelection() && e && !f && !b && this.cfg.rowSelectMode === 'new')) {
this.unselectAllRows()
}
if (this.isMultipleSelection() && e && e.shiftKey) {
this.selectRowsInRange(g)
} else {
this.originRowIndex = g.index();
this.cursorIndex = null;
this.selectRow(g, a)
}
}
PrimeFaces.clearSelection()
}
},
你只要這部分改成這樣:
onRowClick: function (e, d, a) {
if ($(e.target) .is('td,span:not(.ui-c)')) {
var g = $(d),
c = g.hasClass('ui-state-highlight'),
// I changed it to true
f = true;
b = e.shiftKey;
if (c && f) {
this.unselectRow(g, a)
} else {
if (this.isSingleSelection() || (this.isMultipleSelection() && e && !f && !b && this.cfg.rowSelectMode === 'new')) {
this.unselectAllRows()
}
if (this.isMultipleSelection() && e && e.shiftKey) {
this.selectRowsInRange(g)
} else {
this.originRowIndex = g.index();
this.cursorIndex = null;
this.selectRow(g, a)
}
}
PrimeFaces.clearSelection()
}
},
,如果你需要幫助,你可以給我一個信息。
相關問題
- 1. NULLify CTRL按鏈接點擊
- 2. javascript onclick沒有點擊按鈕點擊
- 3. mx:datagrid - ctrl +點擊
- 4. webdriver沒有點擊按鈕
- 5. PhantomJS沒有點擊按鈕
- 6. jquery沒有按鈕點擊
- 7. startAnimation沒有點擊按鈕
- 8. 的RubyMine:按Ctrl +點擊不工作
- 9. 檢測ctrl +點擊pygtk中的按鈕
- 10. Extjs 3.4防止按Ctrl +鼠標點擊
- 11. 觸發CTRL + S當按鈕被點擊
- 12. 沒有敲擊聲按鈕點擊 - android
- 13. 在沒有點擊或Ctrl的情況下拖動多個DIV點擊
- 14. 射擊Ctrl + R鍵,Ctrl + A,按鈕上按Ctrl + Q的事件單擊
- 15. AutoHotkey的:有時按鈕沒有點擊
- 16. 將點擊視爲CTRL +點擊ListView
- 17. 多選框沒有按住Ctrl鍵單擊
- 18. 多選在點擊wihout CTRL沒有發送陣列後
- 19. 字完成,沒有擊中CTRL + SPACE
- 20. Chromedriver按下「Ctrl +單擊」,而不是正常的「點擊」
- 21. 鍵盤沒有打開按鈕點擊
- 22. 當按鈕點擊時沒有聲音
- 23. Android SearchBar沒有點擊按鈕
- 24. JS沒有檢測按鈕點擊
- 25. 標籤沒有按鈕點擊更新
- 26. 按鈕點擊功能沒有運行?
- 27. 沒有按鈕的TextSwitcher點擊
- 28. Jquery event.preventDefault沒有按住shift鍵點擊
- 29. jquery blockUI沒有發生按鈕點擊
- 30. 按鈕沒有意圖點擊後
如果我有多選數據表,我該怎麼辦? – leostiw 2013-04-18 08:07:15
不,多重是不可能的,你必須使用控制鍵,你想象如何得到多個,如果不使用控制鍵:) – 2013-04-18 08:12:47
@leostiw你可以真正避免使用RichFaces數據表組件啓用「多鍵盤免費」選項的數據表組件。 [RichFaces DataTable - 多鍵盤免費](http://showcase.richfaces.org/richfaces/component-sample.jsf?demo=extendedDataTable&sample=exTableSelection&skin=blueSky)問候, – 2013-04-18 08:36:53