jQWidgets Forums
Forum Replies Created
-
Author
-
February 3, 2014 at 1:13 pm in reply to: get rowindex when editmode :click and selectionmode: 'singlecell' get rowindex when editmode :click and selectionmode: 'singlecell' #48843
Hi Peter,
is there any way to get row of selected cell ?
Regards,
lalit singh
January 27, 2014 at 4:46 am in reply to: Update another column cell value on input of value on grid Update another column cell value on input of value on grid #48408Hi Peter,
Thanks I implemented this. Below is my implementation.
I am binding cellendedit event to grid and then after performing calculation , setting the value. This is working fine.
$(“#jqxgrid”).bind(‘cellendedit’, function (event) {
var args = event.args;
var columnDataField = args.datafield;
var rowIndex = args.rowindex;
var cellValue = args.value;
var oldValue = args.oldvalue;if (columnDataField == “SalesFinal”) {
var SalesFinalVal = cellValue;
var updateCAGR = null;var SalesInitialVal = $(“#jqxgrid”).jqxGrid(‘getcellvalue’, rowIndex, ‘SalesInitial’);
if (SalesFinalVal != null && SalesInitialVal) {
updateCAGR = calculateCAGR(SalesFinalVal, SalesInitialVal);
$(“#jqxgrid”).jqxGrid(‘setcellvalue’, rowIndex, ‘CAGRPercentageFinal’, updateCAGR);
}
}
}I hope this is the only way , I can use it. If is there any way around , please let me.
Regards,
Lalit Singh
Hi Peter,
I observed, i was missing columntype: ‘numberinput’ on my columns. Finally i added. Now Its working.
Thanks for your reponse.
Regards,
Lalit Singh
Hi Peter,
Thanks for your reply.
I want to achieve below display
Account Cluster Sub-Segment Data owner Sales GM% Sales
MCBRIDE INT’L EUR CWE AntiP/Deo JBLU – – –
MCBRIDE INT’L EUR CEE Surface Care JBLU 13,555 50 13,455
MCBRIDE INT’L NEA CCN Air Care JBLU 6,808 50 6,708
MCBRIDE INT’L EUR CWE Oral Care (BC) JBLU – –
742,060 741,760you can notice the value 742,060 (there is no text before “sum” or “;”)
, there is no text but only value on row summary. can we achieve this ?regards,
lalit singh
Hi Peter,
I agree what you replied. This was useful link. Here in link , still the word “sum”,”min”,”max” is displaying.
i want only value to be diplayed say for ex : 4956.00 for particular aggregate on status bar. no custom text, just number.
is it possible ?
Regards,
lalit singh
January 6, 2014 at 11:53 am in reply to: Get grid data on row select Get grid data on row select #47303Hi Peter,
Thanks for your reply.I am talking about getting rowdata from grid, synchronization i will do it once i am able to get parameter. my question was how to get the rowdata.
Regards,
Lalit SinghHi Peter Stoev,
Thanks for your valuable information. Its working now.
Regards,
lalit singh
-
AuthorPosts