jQWidgets Forums
Forum Replies Created
-
Author
-
January 5, 2016 at 2:23 pm in reply to: custom filter textbox autofocus custom filter textbox autofocus #80052
Hi All,
Please reply if have any solution its urgent
Thanks,
Rajeshcan you provide any example if possible i used same but not work
Hi ,
Ivailo Ivanovthanks it working fine for me
but have another is i want to hide tool tip only when mouseout from bar
in barchartThanks,
RajeshHi Ivailo Ivanov,
Thanks for reply
Is there any way to show tool tip always beside of bar..
Thanks,
Rajesh.HI I tryed your demo
but its not fill full my requirement
i have data like
Name
——–
1233
4355
@@$$$
rajesh
hirulkarwhen sort Acceding
it should be as per standard sorting like
Name
——–
@@$$$
1233
4355
hirulkar
rajeshwhen sort descending
it should be as per standard sorting like
Name
——–
rajesh
hirulkar
4355
1233
@@$$$thanks for reply can i get selecte item by using nod value or lable
thanks for reply
September 5, 2015 at 11:03 am in reply to: grid bindingcomplete not fired grid bindingcomplete not fired #75530hi any update please
we are facing this problem only when we refresh page
please provide sample code if have
August 26, 2015 at 1:03 pm in reply to: grid bindingcomplete not fired grid bindingcomplete not fired #75191Hi
Thanks for reply can please provide some sample codeits very helpful to us
please
thanks rajesh
Hi
I am able to add button but when i click on node I want to add child and when i click on button want to remove node from treeHI Ivailo Ivanov,
Thanks for reply
Could you please tell me what type of filter condition we will apply for get data between two dates
and what type of operator we will usedmeas what i put in code insted of ? in following code..
var filtergroup = new $.jqx.filter();
var filter_or_operator = ?;
var filtervalue = ?;
var filtercondition = ?;
var filter1 = filtergroup.createfilter(?, filtervalue, filtercondition);
filtergroup.addfilter(filter_or_operator, filter1);hi Ivailo Ivanov,
Thanks for reply but we need custom filter means custom UI of filter as you provide for simple textbox filter
this is code for textfilter
var inputdiv = $(‘<div class=”col-md-4″ style=”height:400px;”></div>’);
var strinput = ”;
strinput += ‘<div class=”grid-pop” style=”width:194px;height: 51px;”>’;
strinput += ‘<div class=”con-area”>’;
strinput += ‘ <div class=”form-group mb0″>’;
strinput += ‘ <input id=”txtfilter” title=”wildcard (%,*,?,_) can be used to match any sequence of chars or single char.” value=”” class=”form-control”>’;
strinput += ‘ </div>’;
strinput += ‘ </div>’;
strinput += ‘<div class=”btn-footer” style=”padding: 9px; width: 194px; margin-top: -8px; margin-left: -1px;”>’;
strinput += ‘<button id=”uiWildfilterclear” disabled=true class=”btn btn-default btnwildfilterClear “>reset</button>’;
strinput += ‘<button id=”wildfilter” class=”btn btn-primary btnwildfilter “>filter</button>’;
strinput += ‘</div>’;
strinput += ‘ </div>’;
inputdiv.append(strinput);
filterPanel.append(inputdiv);var dataSource =
{
localdata: dataAdapter.records,
async: false
}
var dataadapter = new $.jqx.dataAdapter(dataSource,
{
autoBind: false,
autoSort: true,
async: false,
uniqueDataFields: [datafield]
});
var column = $(“#” + gId).jqxGrid(‘getcolumn’, datafield);
$(“#wildfilter”).on(“click”, function () {var checkvalue = $(“#txtfilter”).val().trim();
if (checkvalue.length > 0) {
var filtergroup = new $.jqx.filter();
var filter_or_operator = 1;
var filtervalue = checkvalue;
var filtercondition = ‘contains’;
var filter1 = filtergroup.createfilter(‘stringfilter’, filtervalue, filtercondition);
filtergroup.addfilter(filter_or_operator, filter1);
$(“#” + gId).jqxGrid(‘addfilter’, datafield, filtergroup);
$(“#” + gId).jqxGrid(‘applyfilters’);
$(“#” + gId).jqxGrid(‘closemenu’);
$(‘#uiWildfilterclear’).attr(‘disabled’, false);
} else {
}});
$(“#uiWildfilterclear” + datafield).on(“click”, function () {
$(“#” + gId).jqxGrid(‘removefilter’, datafield);
$(“#” + gId).jqxGrid(‘closemenu’);
$(“#txtfilter”).val(”);
$(‘#uiWildfilterclear’).attr(‘disabled’, true);});
is working fine for
i want same like this code for date filter do you have any sample code for custom date filter
Note :- i want two textboxs one for from date and second for to date in filter panel (we want custom UI design);
Best Regards,
Rajeshhi Dimitar,
thanks for reply
this is not work for me
could you please tell me is there any way to refresh grid whenever i will scroll grid or is there any event on horizontal scroll so i will refresh grid so its will solve my problem.Hi Dimitar
Thanks,
Hi Dimitar,
if i used this then check and uncheck not happened when i click on header check box
observation when first time i check on header check box then all check box are showing check but after that if i uncheck header check box nothing happened all selected check boxes remain same -
AuthorPosts