jQWidgets Forums
Forum Replies Created
-
Author
-
September 8, 2020 at 1:56 am in reply to: jqxNotification is empty sometime!! jqxNotification is empty sometime!! #113025
Thank you very much.
I’ve been thinking about it for a few days and it’s been solved.
I wish you all the best in the future.http://jsfiddle.net/tankla/m4xr2ofk/16/
완전 고맙습니다.
몇 일간 고민하던 것이 해결되었네요.
앞으로도 많은 발전 기원합니다.September 6, 2020 at 12:06 pm in reply to: jqxNotification(Message window) hides behind grid. jqxNotification(Message window) hides behind grid. #113005Thankyou for your answer!!
Thanks a lot to you. I solved this problem.
September 4, 2020 at 3:18 pm in reply to: This is a question about row update in grid. This is a question about row update in grid. #112988Thank you for your answer.
I solved it as below.
var selectedrowindex = $("#jqxgrid").jqxGrid('getselectedrowindex'); var rowscount = $("#jqxgrid").jqxGrid('getdatainformation').rowscount; if (selectedrowindex >= 0 && selectedrowindex < rowscount) { //정렬상태에서는 updaterow가 동작하지 않음으로 상태를 저장, 정렬 초기화, 상태를 다시 불러오는 방식으로 처리하자. $("#jqxgrid").jqxGrid('savestate'); //상태 저장 $("#jqxgrid").jqxGrid('clearfilters'); // 검색 초기화 $("#jqxgrid").jqxGrid('removesort'); // 정렬 초기화 var id = $("#jqxgrid").jqxGrid('getrowid', selectedrowindex); var commit = $("#jqxgrid").jqxGrid('updaterow', id, datarow); //$("#jqxgrid").jqxGrid('ensurerowvisible', selectedrowindex); $("#jqxgrid").jqxGrid('loadstate'); // 저장된 상태 로드 }
September 4, 2020 at 11:03 am in reply to: This is a question about row update in grid. This is a question about row update in grid. #112981UPDATE :
visit below url plz.
http://jsfiddle.net/tankla/pdua0qfm/16/see below gif image.
https://i.imgur.com/k73CHu5.gifSeptember 4, 2020 at 4:49 am in reply to: This is a question about row update in grid. This is a question about row update in grid. #112975– jQuery version : 1.12.4
– jQWidgets version : 10.0.2
– device type(PC, Mobile) : PC
– browser name and version : Chrome 85.0.4183.83 – 64bit– Please, provide step by step instructions on how to reproduce the reported issue and provide a small sample which demonstrates it.
* 1 step : visit jsfillde URL : http://jsfiddle.net/tankla/pdua0qfm/8/
* 2 step : select any row.
* 3 step : Click the “Update Selected Row” button.
* 4 step : You can see that the selected row does not change.– Remove the sorting of “Last name”. then you can see that the selected row does change.
I want to know why and how this happens.
Please assist.
Thank you. -
AuthorPosts