jQWidgets Forums
Forum Replies Created
-
Author
-
August 24, 2015 at 8:22 am in reply to: Grid Grouping : Sub Rows | Main Group Row width is not stretched fully Grid Grouping : Sub Rows | Main Group Row width is not stretched fully #75100
Hi Peter,
Thanks for your quick turnaround.
Actually, I applied the custom style using the CSS class name i.e. .jqx-grid-groups-row. Hence my custom style has got applied to both main group and sub group with that class names.
After applying the custom style i.e. bg color, a white space is noticeable at the right hand side of the grid only for the Main Group Row because the width of the row is not fully stretched alike sub group row.
I hope you understand what I’m trying to say.
Note: This white space is not appearing when there is only one grouping applied to the grid.
Looking for your response.
Thanks,
RajAugust 19, 2015 at 6:30 am in reply to: Get Splitter state after initialized and trigger respective events Get Splitter state after initialized and trigger respective events #74953Hi Peter,
Thanks for your quick turnaround & it helps me. Now it is working fine.
Dimitar,
Thanks for your quick turnaround.
Actually, I’m working in JSP and I need a logic to export data from the server-side alike “save-file.php“.
Could you please help me?
Regards,
RajJune 22, 2015 at 5:07 am in reply to: Tab select is not happening dynamically Tab select is not happening dynamically #72796Folks,
I found the issue and got it resolved.
Cheers,
RajJune 22, 2015 at 3:10 am in reply to: Tab select is not happening dynamically Tab select is not happening dynamically #72793Hi,
Can someone from the jQWidgets team reply to my post. I’m wondering why it is not happening for static HTML prototype.
Please suggest me what could be the issue and solution. I’ve been breaking my head.
Thanks in advance.
Cheers,
RajJune 10, 2015 at 4:48 am in reply to: Apply tooltips for hidden elements Apply tooltips for hidden elements #72234Hi Buddy,
Thanks for your reply.
Already I tried your approach and then only I implemented the same inside the jqxWindow. It was not working.
If possible, can you please provided me an example implementation of what I’m trying to achieve i.e. inside the jqxWindow?
Looking for your reply.
Cheers,
RajMay 28, 2015 at 9:34 am in reply to: Enable & Disable Filter for a particular column Enable & Disable Filter for a particular column #71718In addition to my above requirement, is it possible to change the
columntype
fromdropdownlist
totextbox
based on condition for a particular column?Looking for solution.
Thanks,
RajFebruary 13, 2015 at 7:10 am in reply to: Grid | Get displayed row index Grid | Get displayed row index #67067Hi,
Can somebody help me on this issue? I badly need to get the displayed row index to set cell value after filter.
Looking for a solution.
Regards,
RajFebruary 13, 2015 at 2:33 am in reply to: Grid | Get displayed row index Grid | Get displayed row index #67054Hi Peter,
Thanks for your quick turnaround.
Actually, I need to set cell value to the filtered rows.
In Detail:
In my grid I’ve a column defined with columnType:”checkbox” and one parent checkbox at the column header to Check All/ Un-check All.Here BEFORE applying filter, Check All/ Un-check All is working fine and AFTER filter it is not working as expected. I achieved the Check All/ Un-check All functionality by getting the rows count and set cell value by passing the index & parent checkbox checked state.
Following is the piece of code which I’m trying,
{text: '', datafield: 'linkStatus',columntype: 'checkbox', filterable: false, groupable: false, sortable: false, width: "10%", renderer: function () { return '<div class="checkText" style="text-align:center;line-height:25px"><label>Linked To Domain</label><br /><div id="linkedToDomain" style="left: 50%; margin-left: -10px; top:34px; position:absolute"></div></div>'; }, rendered: function (element) { var linkStatusChkbox = $(element).find('#linkedToDomain'); $(linkStatusChkbox).jqxCheckBox({ theme: theme, width: 16, height: 16, animationShowDelay: 0, animationHideDelay: 0}); $(linkStatusChkbox).on('change', function (event) { //Get parent checkbox state var checked = event.args.checked; //Method 1 var rowscount = $("#empGrid").jqxGrid('getdatainformation').rowscount; for (var i = 0; i < rowscount; i++) { $("#empGrid").jqxGrid('setcellvalue', i, 'linkStatus', checked); } //Method 2 var displayRows = $('#empGrid').jqxGrid('getdisplayrows'); for (var i = 0; i < displayRows.length; i++) { var rowData = displayRows[i]; $("#empGrid").jqxGrid('setcellvalue', rowData.boundindex, 'accountNumber', checked); } }); } }
Both of the above Method 1 & 2 doesn’t give the expected result.
Please help me, how to set the cell value after filtering based on the current displayed row index.
Looking for a reply.
Regards,
RajFebruary 4, 2015 at 6:39 am in reply to: Grid filter row | checkedlist checkboxes are disabled Grid filter row | checkedlist checkboxes are disabled #66463Hi Perter,
I found the issue and it is working fine.
Actually in my JSON, I’ve one key as “disabled” hence somehow the checkedlist checkboxes in dropdown (filter row) became non-editable.
{"compName":"comp1","registeredAddr":"xyz","updatedBy":"raj","disabled":"Y"}
Now I renamed the key and the checkboxes inside filter drop down is working fine.
Kindly check with the jqxGrid library, why the grid behavior has got changed.
Regards,
Raj -
AuthorPosts