jQWidgets Forums
Forum Replies Created
-
Author
-
April 25, 2017 at 2:47 pm in reply to: Show loading gif when grid methods are run Show loading gif when grid methods are run #93116
Hello jacobraccuia,
We already have an integrated loader for Grid. Here is the example:
http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxloader/index.htm#demos/jqxloader/javascript-loader-with-grid.htmBest Regards,
StanislavjQWidgets Team
http://www.jqwidgets.com/April 24, 2017 at 12:44 pm in reply to: highlight cell only for few seconds highlight cell only for few seconds #93093Hi jahvani25,
Here is a sample solution for your problem:
$("#jqxgrid").on('cellendedit', function (event) { let rowID = <code>row${event.args.rowindex}jqxgrid</code>; let cells = $(<code>#${rowID} div</code>); let myCell; for (let i = 0; i < cells.length; i++) { if (cells[i].children[0]) if (cells[i].children[0].value) myCell = cells[i] } setTimeout(() => { $(myCell).addClass('jqx-grid-cell-hover jqx-fill-state-hover'); }); setTimeout(() => { $(myCell).removeClass('jqx-grid-cell-hover jqx-fill-state-hover'); },2000) });
There is a chance that you may have to change something little in order to make it work with your configuration.
Best Regards,
StanislavjQWidgets Team
http://www.jqwidgets.com/April 21, 2017 at 9:56 am in reply to: How to select first row in jqxGrid? How to select first row in jqxGrid? #93056Hello Saurabh,
You can use
ready: function () { $("#jqxgrid").jqxGrid('selectrow', 0) },
.
When the grid is loaded, the first row will aweys be selected.Best Regards,
StanislavjQWidgets Team
http://www.jqwidgets.com/Hello Gary,
Thank you for the report. This will be fixed.
For now, you can go to the typings file(jqwidgets.d.ts
), findSplitterPanel
and changesize
andmin
types tonumber | string
.Best Regards,
StanislavjQWidgets Team
http://www.jqwidgets.com/April 11, 2017 at 1:51 pm in reply to: How to include jq widgets in angular 2 project How to include jq widgets in angular 2 project #92854Hello praneeth,
Thanks for your report, the problem will be fixed in the next update.
For now make this argument of typeany
(go to the file, find the line it says the error is on, and place a type.)
Example:
Before:
val(value): any {....}
Now:
val(value: any): any {....}
Best Regards,
StanislavjQWidgets Team
http://www.jqwidgets.com/April 11, 2017 at 7:13 am in reply to: Dropdown list with filter enabled is giving selected item as undefined Dropdown list with filter enabled is giving selected item as undefined #92850Hello Mallikarjun,
Because this way you don’t actually select anything, this is the reason you get ‘null’.
Best Regards,
StanislavjQWidgets Team
http://www.jqwidgets.com/Hello medkac,
This is the CSS code for changing the splitter button to an img:
.jqx-splitter-collapse-button-vertical{
background-image: url(‘YourImage’);
}Best Regards,
StanislavjQWidgets Team
http://www.jqwidgets.com/April 7, 2017 at 1:46 pm in reply to: Dropdown list with filter enabled is giving selected item as undefined Dropdown list with filter enabled is giving selected item as undefined #92796Hi Mallikarjun Baddur,
We cant reproduce the problem. Can you share a sample fiddle showing it?
Best Regards,
StanislavjQWidgets Team
http://www.jqwidgets.com/Hello medkac,
Could you please, clarify what do you mean by changing the background of the ButtonBar in jqxSplitter.
Best Regards,
StanislavjQWidgets Team
http://www.jqwidgets.com/April 7, 2017 at 7:51 am in reply to: How to include jq widgets in angular 2 project How to include jq widgets in angular 2 project #92764Hello praneeth,
You can download it from our web site and then put this two folders in the main directory of your project:
jqwidgets
jqwidgets-tsBest Regards,
StanislavjQWidgets Team
http://www.jqwidgets.com/ -
AuthorPosts