Forum Replies Created
-
Author
-
September 28, 2021 at 11:32 am in reply to: setcellvalue throws Uncaught TypeError Cannot read property displayfield of null setcellvalue throws Uncaught TypeError Cannot read property displayfield of null #120847
Hello,
Facing same issue when the grid is loaded 2nd/3rd time.
All values passed are in proper format.September 8, 2020 at 1:19 pm in reply to: Angular – JQXTree expand/collapse Angular – JQXTree expand/collapse #113034when I click on arrow, it will expand. That behavior should not change.
Only on doubleclick I need to ignore expand.March 15, 2019 at 1:03 pm in reply to: Grid cell value is not changing Grid cell value is not changing #104351In cellvaluechanged event – newvalue shows 0 and oldvalue shows 58.
August 30, 2018 at 12:50 pm in reply to: Grid scroll after row select Grid scroll after row select #101764Thank You
August 27, 2018 at 1:06 pm in reply to: Grid scroll after row select Grid scroll after row select #101724Hi,
Observed 1 scenario:
If we click on any editable cell then the scroll doesn’t work after that.*Scroll – with the mouse wheel button.
August 27, 2018 at 10:08 am in reply to: Grid scroll after row select Grid scroll after row select #101722Hello Hristo,
Its reproducible in your example.
You need to select the cell and not the checkbox. once you select the checkbox cell (not check/uncheck), scroll doesn’t work.Thanks,
KishoreAugust 24, 2018 at 10:38 am in reply to: Grid scroll after row select Grid scroll after row select #101699Hi Hristo,
Few changes to your example, will reproduce the issue.
$(“#jqxgrid”).jqxGrid({
width: 550,
source: dataAdapter,
showfilterrow: true,
filterable: true,
editable: true,
selectionmode: ‘multiplerowsadvanced’,
columns: [
{ text: ‘Name’, columntype: ‘textbox’, filtertype: ‘checkedlist’, datafield: ‘myfield’, editable: false },
{
text: ‘Product’, filtertype: ‘checkedlist’, datafield: ‘productname’, editable: false
},
{ text: ‘Available’, datafield: ‘available’, columntype: ‘checkbox’, filtertype: ‘bool’, width: 67, editable: true },
{ text: ‘Ship Date’, datafield: ‘date’, filtertype: ‘range’, editable: false, cellsalign: ‘right’, cellsformat: ‘d’ },
{ text: ‘Qty.’, datafield: ‘quantity’, filtertype: ‘number’, cellsalign: ‘right’ }
]
});August 21, 2018 at 9:56 am in reply to: Grid scroll after row select Grid scroll after row select #101624Hello Hristo,
In the example you have mentioned, there is no scroll bar.
In my jqxGrid, scrollbar is present and when the cell of the checkbox is clicked, scroll doesnt work.Thanks,
KishoreHello Martin,
Once I use splice on the particular node, I’m not able to add new node to that node.
Regards,
KishoreHello Martin,
In Demo, only the first node is deleted. In my scenario I want to delete the child nodes of first node or so on.
or even node[i].items[i].items[i].Regards,
KishoreHello Martin,
I’m trying to delete a particular node from multi level tree.
If i pass empty object, a node labeled “item” is replacing the node which i deleted.
Hello Martin,
Thanks that worked.
For Delete : From source i’m not able to delete particular node.
-
AuthorPosts