jQWidgets Forums
Forum Replies Created
-
Author
-
November 6, 2015 at 10:13 am in reply to: Grid | Disablement of individual row disablement Grid | Disablement of individual row disablement #77831
Hi Dimitar,
I saw the forum discussion but I don’t get any clarity on the solution provided. Hence can you please provide me the sample fiddle implementation for checkbox column with disablement?
Looking forward.
Regards,
RajOctober 14, 2015 at 5:03 am in reply to: Grid | Show/Hide Column Dynamically Grid | Show/Hide Column Dynamically #76815Hi Vladimir,
I tried as you suggested and it is working fine :-). Thanks for your reply.
Regards,
RajOctober 7, 2015 at 5:11 am in reply to: DropDownList | Binding to JSON – Nested objects DropDownList | Binding to JSON – Nested objects #76493Hi Vladimir,
Thanks for your wonderful solution.
Actually, once after the “onchange” of “Country” dropdown; I get the JSON response through AJAX in the format which I had provided; from which I need to do only mapping for Branch & Currency dropdown’s. Not based on the JSON which I had received I will render the Country dropdown itself.
My question is, how do I map datafields from the nested objects of JSON using the same source i.e. with the help of map (>) in Source definition?
Looking for your reply.
Regards,
RajOctober 6, 2015 at 3:24 am in reply to: DropDownList | Binding to JSON – Nested objects DropDownList | Binding to JSON – Nested objects #76447Hi Vladimir,
Thanks for your solution.
This is to inform you that, it was my mistake while submitting a code in this forum. Actually, in my development code there are no spaces before and after the > symbol. Even though the mapping is not working properly.
Note: I double checked the code
Can you please provide me a sample fiddle implementation alike my JSON format i.e. Nested Objects?
Looking for your reply.
Regards,
RajSeptember 28, 2015 at 3:15 am in reply to: Grid Grouping | Collapse all sub rows except first sub row Grid Grouping | Collapse all sub rows except first sub row #76197Hi folks,
Is my above requirement possible with grouping grid?
Looking forward for solution.
Regards,
RajSeptember 25, 2015 at 10:50 am in reply to: Grid Grouping | How to avoid group header with group name Grid Grouping | How to avoid group header with group name #76181Hi Ivailo,
Thanks for quick turnaround. It really helps.
Regards,
RajSeptember 25, 2015 at 6:44 am in reply to: Grid Grouping: Sub Rows & Normal Rows Grid Grouping: Sub Rows & Normal Rows #76175Hi Ivailo,
Yes, exactly that’s what I required. But you are saying such feature is not supported.
Any chances are getting such feature in nearby future releases?
Regards,
RajHi Peter,
Can you please provide me a sample implementation or code snippet?
In my case, I need to achieve the same when grid scrollbar reaches the bottom instead of button click.
Looking for your reply.
Thanks,
RajHi Peter,
I had a glimpse on the help documentation but I’m not getting any clear idea hence can you please provide me a sample code snippet based on my following requirement,
I’ve a group & sub group grid where I want to send one or more group data to server.
Looking for your reply.
Thanks,
RajIn addition to my above question, is it possible to get and send only a particular group data to server?
Thanks,
RajAugust 28, 2015 at 9:42 am in reply to: Grid Grouping | Custom Group Header Rending Issue Grid Grouping | Custom Group Header Rending Issue #75251In addition to that, can I able to get the unique group header index using groupsrenderer function?
var groupsrenderer = function (text, group, expanded, data) { }
Thanks,
RajAugust 28, 2015 at 9:36 am in reply to: Grid Grouping | Custom Group Header Rending Issue Grid Grouping | Custom Group Header Rending Issue #75246Hi Vladimir,
Thanks for your quick turnaround.
By doing this way, it will impact the grid performance right?
Is there any callback function for groupsrenderer? so that I can reset the state of button once after the groupsrenderer is complete.
Thanks,
RajAugust 26, 2015 at 7:30 am in reply to: Move filter textbox out of ListBox Move filter textbox out of ListBox #75178In addition to that, here the selection is multiple.
August 26, 2015 at 7:18 am in reply to: Move filter textbox out of ListBox Move filter textbox out of ListBox #75176Hi Dimitar,
Thanks for your wonderful solution.
I tried your code snippet and it is working fine as expected but I noticed that, the selection is disappearing after filtering but the built-in filter textbox is retaining the selected items.
I hope the provided IF condition suppose to do but it is not working as expected,
$('#filterTextbox').keyup(function (event) { var value = event.target.value, filteredSource = [], selectedItem = $("#jqxWidget").jqxListBox('getSelectedItem'); for (var i = 0; i < source.length; i++) { if (source[i].toLowerCase().indexOf(value.toLowerCase()) !== -1) { filteredSource.push(source[i]); } } $("#jqxWidget").jqxListBox({ source: filteredSource }); if (selectedItem && filteredSource.indexOf(selectedItem.label) !== -1) { var newSelectedItem = $("#jqxWidget").jqxListBox('getItemByValue', selectedItem.label); $("#jqxWidget").jqxListBox('selectItem', newSelectedItem); } });
Can you explain me the above highlighted IF condition logic & suggest me a solution for my request?
Looking forward.
Thanks,
RajAugust 24, 2015 at 8:36 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 #75102Ok Thanks Peter
Regards,
Raj -
AuthorPosts