jQWidgets Forums
Forum Replies Created
-
Author
-
September 28, 2016 at 4:13 pm in reply to: datefilter for year and month datefilter for year and month #87777
Hi Hristo,
Your link
https://www.jseditor.io/?key=jqxgrid-filter-by-date
does not return valid code.September 26, 2016 at 6:08 pm in reply to: Virtual mode and custom filtering Virtual mode and custom filtering #87708Thanks, Peter.
If I create my own code for filtering, how can I pass it to these server?
Is it possible to change formatdata function on button click?March 25, 2016 at 7:48 pm in reply to: How to place image in kanban How to place image in kanban #82856Thanks!
February 3, 2016 at 4:10 pm in reply to: Dropdown button does not close on selecting any item from list. Dropdown button does not close on selecting any item from list. #81084I have similar problem. I want close dropdown when the content is clicked. I have this code, but close method does not close drop down:
$("#jqxgrid_details").on('rowselect', function (event) { var args = event.args; var row = $("#jqxgrid_details").jqxGrid('getrowdata', args.rowindex); var dropDownContent = '<div style="position: relative; margin-left: 3px; margin-top: 5px;">' + row['Name'] + ' ' + row['Login_Id'] + '</div>'; $("#jqxdropdownbutton_details").jqxDropDownButton('setContent', dropDownContent); $("#jqxdropdownbutton_details").jqxDropDownButton('close'); });
Thanks Dimitar,
The problem was that I was calling clearselection too early. I move it to rendered function and it’s working now.
Thanks.
If I use clearselection, it generated error in jqxgrid.selection.js :
Microsoft JScript runtime error: ‘this._checkboxcolumn.checkboxelement’ is null or not an object
I use
jQWidgets v3.9.0 (2015-Oct)Sorry, I was using wrong datafield name for checkbox column.
Thanks
When I do export, I am accessing http://jquerygrid.net/export_server/save-file.php
Do you have to provide modification to maximum upload file size?
I am using .NET and localhost and have no idea or knowledge about any php files.
How can I fix maximum upload file size?Thanks
July 15, 2015 at 1:46 pm in reply to: multi select combo box shows value multi select combo box shows value #73763Great! thanks!
June 22, 2015 at 1:04 pm in reply to: on select event fire when type on select event fire when type #72835Thanks,
autoComplete: true,
make it worksJune 19, 2015 at 2:45 pm in reply to: on select event fire when type on select event fire when type #72769Hi Ivailo,
In your example alert never shows, if I start typing and then select. It shows when you select without typing.
Thanks
May 22, 2015 at 11:48 am in reply to: Cascading Combobox for json data Cascading Combobox for json data #71475Thanks Dimitar,
This worked as well:
unitsSource.localdata = $.grep(unitsSource.localdata, function (obj, index) {
return obj.Director === value;
});May 21, 2015 at 11:51 am in reply to: Cascading Combobox for json data Cascading Combobox for json data #71396Hi Dimitar,
Both value and label coming from first combo box and have only director name.
$(“#directors”).jqxComboBox(
{
source: data1,
width: 320,
height: 25,
promptText: “Select director…”,
displayMember: ‘Director’,
valueMember: ‘Director’
});
The difference between combobox example is that I am using ajax call and localdata, not url. I don’t know how to filter localdata.Thanks
March 16, 2015 at 6:29 pm in reply to: Add new row when leave last column Add new row when leave last column #68638Thanks Peter,
Do you have any suggestions how to accomplish that?
One more thing.
Should bubble be drawn if value less then minRadius? In my case value with 0 still shown even minRadius=1.Thanks.
-
AuthorPosts