jQWidgets Forums
Forum Replies Created
-
Author
-
June 10, 2015 at 1:22 pm in reply to: How to merge two columns in Status Bar in jqxGrid How to merge two columns in Status Bar in jqxGrid #72273
can i create my own footer/status bar in the grid.
then i can place sum/aggregate with its Numbers in Letter.
June 9, 2015 at 10:35 am in reply to: On cellendedit column aggregate does not getting effect On cellendedit column aggregate does not getting effect #72211$(“#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;
//alert(‘b4 calc’);
if (columnDataField == “Quantity”) {
//alert(‘InCal’);
var qty = cellValue;
var updateTP = null;
var UP = $(“#jqxgrid”).jqxGrid(‘getcellvalue’, rowIndex, ‘UnitPrice’);
if (qty != null) {
//alert(‘Qty: ‘ + qty + ‘,UP: ‘ + UP);
updateTP = qty * UP;
$(“#jqxgrid”).jqxGrid(‘setcellvalue’, rowIndex, ‘TotalPrice’, updateTP);
UpdateDataToSave();
}
}
});June 9, 2015 at 8:30 am in reply to: How to Save JqxGrid Data to Sql Server 2008 R2 How to Save JqxGrid Data to Sql Server 2008 R2 #72205Thanks Peter
June 8, 2015 at 12:51 pm in reply to: Edit one col should effect the value in another column in JqxGrid Edit one col should effect the value in another column in JqxGrid #72165Mr.Aser thanks for your reply.
the link which u have ping me, is not accepting decimals.
secondly if i edit qty col its should calculate its totals price=(qty*price).
Can u plz help me in this.Thanks once again
June 8, 2015 at 12:47 pm in reply to: how to export JqxGrid data to SQL SERVER 2008 R2 how to export JqxGrid data to SQL SERVER 2008 R2 #72163Mr.Aser i think you just provided the link what i already checked.
I need some clues/suggestions/help so that i can save the grid data
to the sql server.Thanks for your reply.
-
AuthorPosts