jQWidgets Forums
Forum Replies Created
-
Author
-
January 22, 2013 at 10:48 am in reply to: Grid Filter IE7 and IE8 compatibility mode issue Grid Filter IE7 and IE8 compatibility mode issue #14051
updatefilterpanel: function (filtertypedropdown1, filtertypedropdown2, filteroperatordropdown, filterinputfield1,filterinputfield2, filterbutton, clearbutton,columnfilter, filtertype, filterconditions) {var index1 = 0;var index2 = 0;if (columnfilter != null) {var filter1 = columnfilter.getfilterat(0);var filter2 = columnfilter.getfilterat(1);if (filter1) {index1 = filterconditions.indexOf(filter1.comparisonoperator);var value1 = filter1.filtervalue;filterinputfield1.val(value1);}if (filter2) {index2 = filterconditions.indexOf(filter2.comparisonoperator);var value2 = filter2.filtervalue;filterinputfield2.val(value2);}}filtertypedropdown1.jqxDropDownList({ autoDropDownHeight: true, selectedIndex: index1 });filtertypedropdown2.jqxDropDownList({ autoDropDownHeight: true, selectedIndex: index2 });}});
I would like to have only one filterdropdown, one one filterinputfield and no filteroperatordropdown. How can I do that?
January 22, 2013 at 6:10 am in reply to: Custom cellrender affects grid hover style Custom cellrender affects grid hover style #14029var initrowdetails = function (index, parentElement, gridElement) { var row = index;; var id = $("#list2").jqxGrid('getrowdata', row)['id']; var emaildetail = $("#list2").jqxGrid('getrowdata', row)['email1']; var grid = $($(parentElement).children()[0]); var url = "index.php?module=Users&action=getSentScheduledCampaignList"; $.post(url,data,function(msg){ jQuery("#"+id).html(msg); $('.downloadCSV').click(downloadCSV); }); };
I have given an ajax call but it is not loading the html in my subgrid.
January 22, 2013 at 3:02 am in reply to: Custom cellrender affects grid hover style Custom cellrender affects grid hover style #14019Peter,
I have two queries.
1) Is it possible to display popup/alert “onclick” of any item in the grid? If so how and also tell us how it can be used in nested grids also?
2) How to render html in rowdetails? Does javascript functionalities(like onclick etc.,) work after rendering the html?
Peter,
How to give auto suggestions in the toolbar search?
How to do folder(tree) search in toolbar?January 21, 2013 at 12:49 pm in reply to: checkboxes with an all/none option checkboxes with an all/none option #13985Peter,
It is mentioned, Combobox’s inputfield is readonly. How can I overcome the readonly option? such that I will get “multiple search dropdown” functionality.
1) How to add button to the pagerrenderer?
-
AuthorPosts