jQWidgets Forums
Forum Replies Created
-
Author
-
April 1, 2015 at 2:42 pm in reply to: Dynamically setting column width Dynamically setting column width #69437
Hi Peter,
Thanks a ton for quick reply. Actually i am changing width of multiple columns in side for loop (Say 35 out of 40 columns). Can you please give me an example of beginUpdate and endUpdate.
Thanks!
Hi,
I implemented the above Grid tooltip, described by Peter Stoev, Dec 12, 2013. But I am facing an issue. As this tooltip is hosted to Whole grid id and on cellhover we reposition the tooltip with content. But when there is scroll bar in the grid, and when I hover to the scroll bar I can see the tooltip with last content showed during cellhover.
Any solution to this problem?
Thanks,
DebashisHi Peter,
Still I can see the horizontal scroll bar in the dropdown in the given example. Only ellipses shown after selected. Can it be achieved in the dropdown itself?
Thanks,
DebashisNovember 20, 2014 at 10:58 am in reply to: Change row color based on condition Change row color based on condition #63072Hi Nadezhda,
Its working perfectly. Thanks a ton!
November 18, 2014 at 10:44 am in reply to: How can i use jqxTooltip inside jqxGrid to get tootlip How can i use jqxTooltip inside jqxGrid to get tootlip #62950Hi Dimitar,
I am adding tooltip something like below:
cellhover: function (element, pageX, pageY) {
var content = “<span style=’color: #000000;’>“+element.innerText+”</span>”;
/*Here also I need the other columns data of same row where I hover the mouse on cell*/
$(element).jqxTooltip({position: ‘mouse’, content: content});
}
I can not write as $(‘#jqxgrid’).jqxGrid() because I do not know the div reference id, I only have the element as parameter to callback. Also to call getrowdata I think row number is required but here I don’t have the row number.Any help?
November 18, 2014 at 9:03 am in reply to: How can i use jqxTooltip inside jqxGrid to get tootlip How can i use jqxTooltip inside jqxGrid to get tootlip #62938Hi Dimitar,
Thanks for reply!
I have seen this example earlier. But I have a requirement like in tooltip I need to show the data of other columns in the same row. So inside cellhover callback can I get the row data of other column as well?
-
AuthorPosts