jQWidgets Forums
Forum Replies Created
-
Author
-
Hi edwardsmarkf,
Please, refer to the following example : http://jsfiddle.net/5gwck3kd/
Here is added an item using jqxListBox’s addItem method.
In the demo is used external input.Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comDecember 14, 2016 at 5:16 pm in reply to: custom-values-to-context-menu-items-in-jqgrid custom-values-to-context-menu-items-in-jqgrid #89842Hi VM,
Please, refer to the following example: http://jsfiddle.net/xgh8nk15/
Here the context menu represents multiple options on a single row.Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comHi ratchetclank,
You can use jqxDropDownList’s clearSelection method.
Please, refer to the following example : http://jsfiddle.net/jqwidgets/5FRxK/Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comHi edwardsmarkf,
If you want to get the items of the widget, you can use getItems method.
Please, refer to the following example : http://jsfiddle.net/jqwidgets/SDJqH/Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comDecember 14, 2016 at 4:11 pm in reply to: Selecting text in one cell with multiplerowsexented and keyboardnavigation false Selecting text in one cell with multiplerowsexented and keyboardnavigation false #89836Hi kbeckers,
If you want to select a single cell you can use
selectionmode: 'multiplecellsextended'
.
Please, refer to the following example: http://jsfiddle.net/r4aLvax2/Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comDecember 12, 2016 at 9:22 am in reply to: CheckBox Disable/Enable Issue CheckBox Disable/Enable Issue #89761Hi kdisarno,
Please, refer to this demo. It can be helpful for you.
Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comDecember 11, 2016 at 10:49 pm in reply to: CheckBox Disable/Enable Issue CheckBox Disable/Enable Issue #89747Hi kdisarno,
The problem in your demo is the usage of a wrong selector.
Please change$("jqxButton").on('click', function()
to$("#jqxButton").on('click', function()
an the code will work as expected.Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comDecember 11, 2016 at 10:19 pm in reply to: jqxgrid rowselect value to textarea jqxgrid rowselect value to textarea #89746Hi dan123,
You can get the value of the selected row from the select event arguments and then set it in the text area via the text area’s Val method.
Here is a simple demo : https://jsfiddle.net/v1f9geme/Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comDecember 11, 2016 at 9:38 pm in reply to: Need to create an amps gauge Need to create an amps gauge #89745Hi Steve,
Yes, with these settings the caption is positioned into the hidden part of the gauge.
Please, try with these settings :
caption: { offset: [0, -70], value: 'Runner Bearing L (ºC)', position: 'bottom' },
and 200px about container’s height.Here is the new gauge demo.
Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comDecember 8, 2016 at 11:30 am in reply to: Need to create an amps gauge Need to create an amps gauge #89686Hi Steve,
Please, refer to the following amp gauge demo.
The gauge can be only circular, but you can wrap it into a container with smaller height and overflow hidden.
Via this workaround the gauge will look as a semi-circular.Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comDecember 4, 2016 at 5:18 pm in reply to: jqxdropdownlist and tooltip bound jqxdropdownlist and tooltip bound #89546Hi dan123,
As a new approach, you can set the tooltip to
closeOnClick: false
and control it’s visibility via the drop down.
When the dropdown closes – the tooltip will be closed too. To prevent closing the dropdown when the tooltip is clicked, you can use$(".jqx-tooltip").on("mousedown", function(event){ event.stopPropagation(); });
Here is the demo with tooltip and drop down list.
Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comDecember 4, 2016 at 4:58 pm in reply to: How can I add a tooltip for every single cell of a treegrid How can I add a tooltip for every single cell of a treegrid #89544Hi newuser,
Here is a tree grid demo with your code.
Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comNovember 25, 2016 at 2:45 pm in reply to: How can I add a tooltip for every single cell of a treegrid How can I add a tooltip for every single cell of a treegrid #89317Hi newuser,
JavaScript is a case-sensitive language. You have to modify your cellsRenderer callback.
Please, changecellsRenderer: cellsrenderer
tocellsRenderer: cellsRenderer
.Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comNovember 25, 2016 at 11:06 am in reply to: How to decorate column of grid How to decorate column of grid #89308Hi Alexey,
Please, refer to the following grid demo.
Here is used cellclassname to be added CSS class in relation to the value. You can check the row number instead value in the presented cellclass function.Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comNovember 25, 2016 at 10:43 am in reply to: How can I add a tooltip for every single cell of a treegrid How can I add a tooltip for every single cell of a treegrid #89306Hi newuser,
Please, send a working jsfiddle/jsEditor example with your exact code for better analyze.
Probably you are not using correctly the attachTooltip() function from the previous example.
Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.com -
AuthorPosts