jQWidgets Forums
Forum Replies Created
-
Author
-
May 14, 2020 at 10:49 am in reply to: Angular – Grid – binding data Angular – Grid – binding data #111975
HI
DateTime filter is giving error if I assign url to source.
TypeError: G.grid.source.formatDate is not a function at push../node_modules/jqwidgets-ng/__ivy_ngcc__/jqwidgets/jqxgrid.js.b.jqx.dataview.databind (jqxgrid.js:8)
November 6, 2018 at 11:13 am in reply to: How to get items (child nodes) of Jqwidgets.TreeItem How to get items (child nodes) of Jqwidgets.TreeItem #102655Hi Martin,
Example:
A
-B
-C
A1
-BCopy B from A to A1.
B of A1 has reference to B of A.
How do i clone a node?Thanks,
KavyaAugust 1, 2018 at 5:56 am in reply to: Angular- Menu list, SubMenu issue Angular- Menu list, SubMenu issue #101320Thank you
July 30, 2018 at 10:06 am in reply to: Angular- Menu list, SubMenu issue Angular- Menu list, SubMenu issue #101302Hello Martin,
I could reproduce issue in your demo as well.
You just need to move the cursor up as soon as u delete row, You will see that the insert submenu(Insert Above and Insert Below) is opened/expanded.Thanks,
Kavyashree M DJuly 26, 2018 at 6:19 am in reply to: Angular- Menu list, SubMenu issue Angular- Menu list, SubMenu issue #101242<li>Insert <ul> <li>Insert Above</li> <li>Insert Below</li> </ul> </li> <li>Delete</li> <li>Copy</li> <li>Paste</li>
For jqxGrid – I have used this Contextmenu.
When I delete a row, the menulist hides and if I move the mouse up the submenu appears.Hi,
I have used grid.endcelledit(). any other alternative?
June 20, 2018 at 1:44 pm in reply to: How to disable cut copy paste and delete option for non editable column How to disable cut copy paste and delete option for non editable column #100636Hi,
I have set clipboard property to false. but i can paste text which is already present in clipboard.
I want disable copy and paste for a particular cell.{ text: ‘Run’, datafield: ‘nodeName’, editable: false, width: 250, renderer: this.jqGridColumnsRenderer, clipboard: false,
handlekeyboardnavigation: function (event) {
var key = event.charCode ? event.charCode : event.keyCode ? event.keyCode : 0;
if (key == 86 && event.ctrlKey == true) {
event.preventDefault();
return true;
}
},
cellsrenderer: function(row?: number, columnfield?: string, value?: any, defaulthtml?: string, columnproperties?: any, rowdata?: any){
if(value == ‘<Dynamic>’){
return “Dynamic”;
}
return value;
}
}Hi Martin,
[Please, when you post your questions, do it in one post only, not in several categories.]
Sure will take care.how do i update the source? as i’m using source to update the data on server.
Thanks,
KavyaJune 4, 2018 at 12:29 pm in reply to: Angular – Tree source is not updated Angular – Tree source is not updated #100463<jqxTree #objTree [allowDrag]=”false” [allowDrop]=”false”
[width]=”‘100%'” [height]=”‘100%'” [theme]=”appTheme” [source]=”treeSource”>Hi Martin,
Thank you for the help.
Regards,
KavyaHello Martin,
I have set the position
this.objCMenu.open(event.clientX + 5 + scrollLeft, event.clientY + 5 + scrollTop);TreeComponent is till the end of the page. The context menu opens out of the page where all the menu items are not fully visible.
Even in the Demo shown, it opens beyond the TreeComponent and not inside the TreeComponent.
I want the contextmenu to open within the TreeComponent.Thanks,
Kavya -
AuthorPosts