jQWidgets Forums
Forum Replies Created
-
Author
-
December 18, 2015 at 11:38 am in reply to: Class not accesible horizontal scroll. Class not accesible horizontal scroll. #79509
Hi Peter,
I need to assign a class to a cell which has this class. But when we scroll since we cannot access this class, we cannot do the same. How can we achieve this functionality by using getcellvalue method, getrowdata method, etc? Any help will be appreciated.Regards,
NitinNovember 27, 2015 at 9:17 am in reply to: How to create a drop-down on the column header How to create a drop-down on the column header #78612Hi @aldo86/ Peter,
I have implemented header column name change using @aldo86 approach, everything works perfectly fine except when i select already existing value from dropdown, dropdown doesn’t go.
E.g.
Consider i have 4 values in my drodown i.e 1, 2, 3, 4 and already selected value is “2”. Now i select value “1” from dropdown list, everything works fine, i am able to come out of the dropdown list. But when i select again value “2” from dropdown list, which was my default value, dropdown doesn’t goCan you help us to resolve this issue, if you had faced the same.
Thanks,
Nitin AyirJuly 13, 2015 at 12:12 pm in reply to: jqxGrid disable edit property of a cell jqxGrid disable edit property of a cell #73672Hi Ivailo,
Thanks, it works as expected.
regards,
NitinMay 11, 2015 at 11:59 am in reply to: Page resets on copy paste, page scrolls Page resets on copy paste, page scrolls #70930Hi Peter,
Can you suggest any method to take care of above issue, so the focus will remain at current position. It will be of great help to us.
Thanks,
NitinMarch 24, 2015 at 8:14 am in reply to: Reduce number of HTTP requests on page while building jqxGrid Reduce number of HTTP requests on page while building jqxGrid #69056Hi Dimitar,
Thanks for suggestion.
regards,
NitinMarch 24, 2015 at 7:17 am in reply to: Reduce number of HTTP requests on page while building jqxGrid Reduce number of HTTP requests on page while building jqxGrid #69046Hi Dimitar,
Since we are using paid version of jqwidgets library, files we use are from ver3.7.1-development and not from public. Is it going to make license issue, if we make use of public js file?
Thanks,
NitinMarch 24, 2015 at 6:59 am in reply to: Reduce number of HTTP requests on page while building jqxGrid Reduce number of HTTP requests on page while building jqxGrid #69042Hi Dimitar,
Yes, we tried that but the only problem is that file size is 5.51MB and its takes more time to load around 630ms which affects page load time. Can you suggest how we can minify this js file, it will be great help for us.
Thanks,
NitinMarch 17, 2015 at 4:02 am in reply to: Clearing filters, sorting and editedrows onclick of refresh button in jqxGrid Clearing filters, sorting and editedrows onclick of refresh button in jqxGrid #68641Hi Peter/Dimitar,
Are you able to reproduce the issue at your end?
Regards,
Nitin
March 15, 2015 at 6:42 pm in reply to: Clearing filters, sorting and editedrows onclick of refresh button in jqxGrid Clearing filters, sorting and editedrows onclick of refresh button in jqxGrid #68560Hi Dimitar,
Can u check this example on my server:
Note: Refresh the link if mod_security error comes
Grid goes blankSteps to reproduce:
1) sort on address column
2) then try to edit “korgao” with some value say “zzzz”
3) now click outside gridBehaviour: Grid goes blank.
Please refer my code:
<!DOCTYPE html>
<html lang=”en”>
<head>
<link rel=”stylesheet” href=”../../jqwidgets/styles/jqx.base.css” type=”text/css” />
<link rel=”stylesheet” href=”../../jqwidgets/styles/jqx.classic.css” type=”text/css” />
<script type=”text/javascript” src=”../../scripts/jquery-1.10.2.min.js”></script>
<script type=”text/javascript” src=”../../jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”../../jqwidgets/jqxbuttons.js”></script>
<script type=”text/javascript” src=”../../jqwidgets/jqxscrollbar.js”></script>
<script type=”text/javascript” src=”../../jqwidgets/jqxmenu.js”></script>
<script type=”text/javascript” src=”../../jqwidgets/jqxgrid.js”></script>
<script type=”text/javascript” src=”../../jqwidgets/jqxgrid.edit.js”></script>
<script type=”text/javascript” src=”../../jqwidgets/jqxgrid.selection.js”></script>
<script type=”text/javascript” src=”../../jqwidgets/jqxgrid.sort.js”></script>
<script type=”text/javascript” src=”../../jqwidgets/jqxdata.js”></script>
<script type=”text/javascript” src=”../../jqwidgets/jqxgrid.pager.js”></script>
<script type=”text/javascript” src=”../../jqwidgets/jqxdropdownlist.js”></script>
<script type=”text/javascript” src=”../../jqwidgets/jqxlistbox.js”></script>
<script type=”text/javascript”>
$(document).ready(function () {
// prepare the data
//var theme = ‘classic’;var source =
{
datatype: “json”,
datafields: [
{ name: ‘name’, type: ‘string’},
{ name: ‘address’, type: ‘string’},
],
url: ‘data.php’,
cache: false,
sort: function()
{
// update the grid and send a request to the server.
$(“#jqxgrid”).jqxGrid(‘updatebounddata’, ‘sort’);
},
beforeprocessing: function(data)
{
source.totalrecords = data[0].TotalRows;}
};// initialize jqxGrid
$(“#jqxgrid”).jqxGrid(
{
source: source,
sortable: true,
editable: true,
pageable: true,
virtualmode: true,
rendergridrows: function(obj)
{
return obj.data;
},
columns: [
{ text: ‘Name’, datafield: ‘name’},
{ text: ‘Address’, datafield: ‘address’},
]
});
});
</script>
</head>
<body class=’default’>
<div id=’jqxWidget'”>
<div id=”jqxgrid”></div>
</div>
</body>I have implemented grid as per your example. Can you check and tell me the fix.
Thanks,
Nitin
March 4, 2015 at 6:22 am in reply to: Clearing filters, sorting and editedrows onclick of refresh button in jqxGrid Clearing filters, sorting and editedrows onclick of refresh button in jqxGrid #67976Hi Peter,
Thanks, looking forward to it. Can you please look into grid blank issue when there are only four records in grid and we sort(not filter) a shipname column and try to edit that column content.
Thanks,
NitinMarch 3, 2015 at 5:10 pm in reply to: Clearing filters, sorting and editedrows onclick of refresh button in jqxGrid Clearing filters, sorting and editedrows onclick of refresh button in jqxGrid #67952Hi Peter,
Can you please tell us when is the next jqwidgets version will be released with a fix for copy paste not working on pagination(server side).
regards,
NitinMarch 2, 2015 at 8:18 am in reply to: Clearing filters, sorting and editedrows onclick of refresh button in jqxGrid Clearing filters, sorting and editedrows onclick of refresh button in jqxGrid #67882Hi Dimitar,
Can you please show us how to do that, when we have less number of records in orders table. Consider we have only four records and not 830.
Thanks,
Nitin
March 2, 2015 at 4:14 am in reply to: Clearing filters, sorting and editedrows onclick of refresh button in jqxGrid Clearing filters, sorting and editedrows onclick of refresh button in jqxGrid #67855Hi Dimitar,
We have implemented editable grid by referring example Build CRUD Web App with jqxGrid using PHP and MySQL.
Can you keep only 4 records in “orders” table, sort “Shipname” column and then edit content of “Shipname” column. Full grid will go blank.
Hope now atleast i am much more clear to reproduce the issue at your end. Any help will be appreciated.
Thanks,
NitinFebruary 27, 2015 at 11:29 am in reply to: How to disable threestatecheckbox on load of jqxGrid How to disable threestatecheckbox on load of jqxGrid #67801Hi Peter,
It works for us. Thanks for providing a solution.
regards,
NitinFebruary 27, 2015 at 8:40 am in reply to: Clearing filters, sorting and editedrows onclick of refresh button in jqxGrid Clearing filters, sorting and editedrows onclick of refresh button in jqxGrid #67787Hi Dimitar,
Consider if you have only four records in your database table(in our case orders). After fetching this four records from table, try to sort on “Shipname” column and then edit content of shipname. Grid will become blank.
Can u please check if you can reproduce the issue at your end.
Regards,
Nitin -
AuthorPosts