jQWidgets Forums
Forum Replies Created
-
Author
-
I don’t realize that you have another Web Component
I started to find out if these can be my future widgetsbut, the forum and blog gets database error
December 19, 2019 at 10:04 am in reply to: JqxGrid Group Header Click JqxGrid Group Header Click #107624Wow! That’s very nice trick!
I will share my improved code here,
but btw, why when I expand the group with this function, the scrollbar go up?Please help me again to fix this..
This is the only glitch that I need to be fixedThank you very much, @hristo!
December 17, 2019 at 7:51 am in reply to: JqxGrid Group Header Click JqxGrid Group Header Click #107591for $(‘#jqxGrid’).jqxGrid(‘expandgroup’, group_index);
when I use cellclick,
$("#jqxGrid").on("cellclick", function (event) { // event arguments. var args = event.args; // row's bound index. var rowBoundIndex = args.rowindex; // row's visible index. var rowVisibleIndex = args.visibleindex; // right click. var rightclick = args.rightclick; // original event. var ev = args.originalEvent; // column index. var columnindex = args.columnindex; // column data field. var dataField = args.datafield; // cell value var value = args.value; });
what value that I can use for group_index?
With the example, I dont know how to implement it into my table…
I have regular table (mysql) and I don’t know how to display rows horisontally with large number of records, so I need virtual scrolling left/right direction (not top/bottom)How to wrap text on virtual scrolling?
November 5, 2019 at 9:48 am in reply to: autorowheight (wrap text in cell) is not working properly when we use 'virtualm' autorowheight (wrap text in cell) is not working properly when we use 'virtualm' #107242How to wrap text on virtual scrolling?
September 30, 2019 at 3:04 am in reply to: How to render button inside grid? How to render button inside grid? #106874When I put this line:
$('.confirm.).jqxButton({ width: 120, imgPosition: "left", textPosition: "left", imgSrc: "img/icons/check.png' });
On Document Ready, after Grid render,
It says: Uncaught Error: Invalid Selector – .confirm! Please, check whether the used ID or CSS Class name is correct.I test it on android, sometimes it needs click twice to trigger
November 27, 2018 at 4:58 am in reply to: How to update localdata JSON How to update localdata JSON #102915I can do Add and Delete, but when I click the Refresh button, It goes back to previous data.
I don’t know how to updating the json data in the
source's callback
to do a server call.Please help me again.
November 27, 2018 at 4:23 am in reply to: How to update localdata JSON How to update localdata JSON #102913Wow, it works like a charm!
BUt I don’t understand about this code:
let entry = data.find(x => x.id === rowid); entry.CompanyName = rowdata.CompanyName; entry.ContactName = rowdata.ContactName;
Where’s X come from?
It’s very confusing me.
Can you help me to give me the example for Add and Delete?
Thanx for your help!
September 15, 2017 at 2:34 am in reply to: Initiating button inside window Initiating button inside window #96039Thank you for your reply!
I can solve this with your approach, but I wonder why it didn’t work with standard JQWidget syntax that it works with the old version?
-
AuthorPosts