jQWidgets Forums
Forum Replies Created
-
Author
-
July 29, 2016 at 3:42 pm in reply to: formatting row and column in jqxgrid formatting row and column in jqxgrid #86194
Hi Ivo,
I hope you would be able to see the attached SS now.
1.
2.
Thanks,
PankajMay 12, 2014 at 8:59 am in reply to: JqxGrid deleting empty row Deleted wrong index JqxGrid deleting empty row Deleted wrong index #54341Hi Dimitar,
Thanks for reply i saw this example earlier and I have implemented the same but in this http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/createremoveupdatedata.htm?arctic example all rows are already binded so it returns valid rowid i would request you to please add some blank row from top and then try to delete those blank row and then see what happened it will delete row randomly.
Please provide me solution asap.
Thanks,
Pankaj SrivastavaMay 12, 2014 at 7:17 am in reply to: JqxGrid deleting empty row Deleted wrong index JqxGrid deleting empty row Deleted wrong index #54338Hi Drimitar,
Thanks for reply but I was also used below code but getrowid return incorrect value it only returns bounded row id not empty row id.
var id = $(“#jqxprojectgrid”).jqxGrid(‘getrowid’, deleteRowIndex);
var commit = $(“#jqxprojectgrid”).jqxGrid(‘deleterow’, id);suppose i have 3 rows binded when grid load and i added 2 more row from top so if i want to delete 0 index row by using below code it will delete my last binded row of grid which is wrong i want to delete the same row which i clicked i don’t care it empty or binded.
var id = $(“#jqxprojectgrid”).jqxGrid(‘getrowid’, deleteRowIndex);
var commit = $(“#jqxprojectgrid”).jqxGrid(‘deleterow’, id);Thanks,
Pankaj S.April 21, 2014 at 10:02 am in reply to: How to set time 00:00 Currently time is set to current time How to set time 00:00 Currently time is set to current time #53338Thank you Peter for your support,
Issue has been resolved
April 18, 2014 at 7:11 am in reply to: How to set time 00:00 Currently time is set to current time How to set time 00:00 Currently time is set to current time #53260Hi Peter ,
Thanks for your response,I am using SetHours function of javascript but its not working.
var date1=new Date();
var generaterow = function () {
var row = {};
row[“TimeIn”] = date1.setHours(0,0,0,0);
return row;
} -
AuthorPosts