Implementing jqgrid with Symfony to display a datagrid has been a challenging task for me.
Thanks to Oleg's insightful response, many of the major issues have been resolved.
Below is a snippet of my code:
<link rel="stylesheet" type="text/css" media="screen" href="{{ asset('bundles/productorderlookup/css/ui-lightness/jquery-ui.css') }}" />
<link rel="stylesheet" type="text/css" media="screen" href="{{ asset('bundles/productorderlookup/css/ui.jqgrid.css') }}" />
<link rel="stylesheet" type="text/css" media="screen" href="{{ asset('bundles/productorderlookup/css/ui.multiselect.css') }}" />
<style type="text/css">
span.cellWithoutBackground
{
display:block;
background-image:none;
margin-right:-2px;
margin-left:-2px;
height:14px;
padding:4px;
}
</style>
...
Having followed Oleg's suggestions discussed here, I am still encountering persistent issues.
I'm currently grappling with a few challenges: (1) [SOLVED] The virtual scroll feature remains non-functional. Despite adjusting parameters like height, width, and shrinkToFit, the issue persists. Enabling scroll:true only disables paging.
(2) [SOLVED] The sortable functionality does not operate as expected. Even after integrating essential CSS and JS files, the sorting feature continues to malfunction.
(3) [SOLVED] Additionally, gridResize feature is unresponsive. Although the cursor changes when attempting to resize, the actual resizing does not occur.
The possible reason for these glitches could be attributed to an excessive inclusion of CSS and JS files.
I would greatly appreciate any assistance or insights on resolving these matters. Thank you in advance.