jQWidgets Forums
Forum Replies Created
-
Author
-
November 28, 2018 at 4:45 pm in reply to: Cell color for Dynamic Header and Dynamic Data Cell color for Dynamic Header and Dynamic Data #102956
Hi Marting,
Thanks for Reply, I have checked the provided example but it is having some issue like when I’m scrolling the grid the color is still remains at the same position, for example you have given RED color <100 value but when I’m scrolling the red color is on same place (5th position) but the value gets changed for red color.
So please help me to resolve this.
May 19, 2018 at 10:36 am in reply to: Filter row not getting resized properly Filter row not getting resized properly #100284Actually because of confidentiality agreement neither can i share the code nor the screenshot. My grid has 54 columns. So when it is getting resized ,I am using autoresize columns , right at the end of the grid i.e., that is the last 2 or 3 columns the the filter row margin is not in line with the column margin. Its not so evident in in the first few columns .The non alignment is extremely gradual but it does increase . Which is why it becomes visible right at the end columns
May 16, 2018 at 1:34 pm in reply to: How to change the Empty Grid Message "No data to display" How to change the Empty Grid Message "No data to display" #100236Hi Martin,
I have already used the myGrid selector in @viewchild but still it is not working for me. I’m using jqwidget 5.6.0.
Is there any issue with this version?I saw your demo also.
Is there any other way to do this?
Thanks
May 16, 2018 at 12:13 pm in reply to: How to change the Empty Grid Message "No data to display" How to change the Empty Grid Message "No data to display" #100228Hi Team,
I have tried the provided codengAfterViewInit() { let localizationObj = {}; localizationObj['emptydatastring'] = "Custom no data message.", this.myGrid.localizestrings(localizationObj); }
but still it is not changing the empty grid message.
And in console it is giving the error ” Cannot read property ‘localizestrings’ of undefined”.Please can you look into that to resolve the issue.
Thanks.
May 11, 2018 at 6:13 am in reply to: How to change the Empty Grid Message "No data to display" How to change the Empty Grid Message "No data to display" #100159Hi Team,
I have tried to implement the given code in angular but it is giving error. and it is not reflecting in the jqxgrid.
How I have tried just have a look into that. If any correction, please provide in angular codengOnInit() { let localizationObj = {} localizationObj.emptydatastring: "Custom no data message.", this.myGrid.localizestrings(localizationObj.emptydatastring); }
Please help regarding this issue.
Thanks
May 9, 2018 at 11:41 am in reply to: Row index of hovered row of JqxGrid Row index of hovered row of JqxGrid #100133Thanks a lot !! This solved my issue
Thanks,
ShaktiMay 9, 2018 at 6:27 am in reply to: Row index of hovered row of JqxGrid Row index of hovered row of JqxGrid #100115Thanks a lot . I am being able to get the row . However I am unable to access any global variable inside this function . I am working in angular . There is an array selectedRows[] which I have declared outside inside class. However I am unable to access it using this.selectedRows inside this cellhover function . this.selectedRows is coming as undefined . I console logged (this). Only the grid properties & functions are there . Nothing else . I cant even call any other function inside this cellhover apart from the ones which are already defined in ‘this’ . Would greatly appreciate any help regarding this.
Thanks,
ShaktiHi Stanislav,
I have used the provided code this helps me and thanks for helping me.But when I’m removing
rendered: this.tooltiprenderer
from other columns
still it is showing the tooltip over that column where I have removed it.columns: any[] = [ { text: 'Ship Name', datafield: 'ShipName', width: 250, rendered: this.tooltiprenderer }, { text: 'Shipped Date', datafield: 'ShippedDate', width: 100, cellsformat: 'yyyy-MM-dd' }, { text: 'Freight', datafield: 'Freight', width: 80, cellsformat: 'F2', cellsalign: 'right'}, { text: 'Ship Address', datafield: 'ShipAddress', width: 350 }, { text: 'Ship City', datafield: 'ShipCity', width: 100}, { text: 'Ship Country', datafield: 'ShipCountry', width: 101} ];
So here I want to show the tooltip over “Ship Name” but still it is showing in all the columns.
I’m debugging the code but I’m not getting from where it is taking all the columns.
Can you look into that?Thanks
ShaktiHi Stanislav,
Thanks for reply,
this is working fine but it is giving the same value what it is showing in the grid.
Can we give the custom message in the tooltip?thanks
ShaktiApril 2, 2018 at 3:29 pm in reply to: Deletion of newly added row in jqxgrid Deletion of newly added row in jqxgrid #99553Hi,
Thanks for the reply.
I checked this, but it is still not working. When i am deleting the new row, it is deleting the second row.April 2, 2018 at 3:16 pm in reply to: validation for dynamic columns in jqxgrid validation for dynamic columns in jqxgrid #99552Hi Stanislav,
this is what I’m facing the chalenges, and I want to use dynamic column.
1) You are trying to add dynamic columns with custom data and have button column at the end of the row always?
2) You have trouble adding validation to dynamically added columns, but the static columns are ok?
3) If possible can you add dropdownlist with filter option in the middle of the grid so if user want he can search within the dropdownlist.
thanks
April 2, 2018 at 3:11 pm in reply to: Row color is not changing after copy-paste the row data Row color is not changing after copy-paste the row data #99551Hi Stanislav,
I have a grid of multiple rows like (0,1,2,3,4,…),
so I have added a new row with
addRowDetails() {
let datarow = “”;
this.myGrid.addrow(null, datarow, 0);
}
button click event.
Now I want to copy data from rowId:2 and want to paste in the newly added row, copy and pasting is working but i want to change the color of the row when I paste the data in new row.Thanks.
April 2, 2018 at 3:06 pm in reply to: Validation while uploading the data in JQXGrid Validation while uploading the data in JQXGrid #99550Hi Stanislav,
Thank you for the reply. Can you give me a samaple code for the same. IT would be a great help.
Hope to hear back from you soon.
Thanks,
April 2, 2018 at 8:01 am in reply to: Deletion of newly added row in jqxgrid Deletion of newly added row in jqxgrid #99534Hi,
On deleting the newly added row, the row having id 1 is getting deleted, that is the second row. I want to delete the first row which is added.
I would need some help regarding this.Thanks.
March 29, 2018 at 12:08 pm in reply to: jqxgrid column button not firing event after adding icon over there jqxgrid column button not firing event after adding icon over there #99476Hi Stanislav!
Thank you
-
AuthorPosts