jQWidgets Forums
Forum Replies Created
-
Author
-
November 22, 2016 at 2:40 pm in reply to: dynamic dropdown on click event dynamic dropdown on click event #89229
Hi jahnvi25,
Please, refer to this drop down list example. It can be helpful for you.
Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comHi heer,
You can use renderToolbar callback to create your custom header.
In this case, you can hide the built-in header with showHeader: false, and show the toolbar with showToolbar: true.This demo with renderToolbar will be helpful for you.
Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comNovember 22, 2016 at 1:34 pm in reply to: Selection is not changed in editor mode Selection is not changed in editor mode #89227Hi DrTiBiBo,
We tested the scenario with
editmode: 'dblclick'
and we cannot see such a behavior.
Please refer to the following grid demo.You can try to update to the latest version(4.3.0).
If the problem remains, please send more information about your grid settings.Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comNovember 22, 2016 at 1:27 pm in reply to: jqxdropdownlist and tooltip bound jqxdropdownlist and tooltip bound #89226Hi dan123,
As a workaround, in this case, you can open the Drop Down when the tooltip is clicked.
Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comNovember 22, 2016 at 12:48 pm in reply to: DropDownList select item not working DropDownList select item not working #89222Hi tbrocker,
You also can use selectedIndex property.
For exampleselectedIndex: 1
Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comHi fruitik,
Unfortunately, we cannot offer you another workaround.
The widget doesn’t support such a functionality by default.Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comNovember 21, 2016 at 9:08 am in reply to: DropDownList select item not working DropDownList select item not working #89185Hi tbrocker,
You have to bind to the event before the “preselection” if you want to get the item.
Please refer to this DropDownList demo.Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comNovember 21, 2016 at 8:50 am in reply to: jqxdropdownlist and tooltip bound jqxdropdownlist and tooltip bound #89184Hi dan123,
You can bind to the close event of the DropDownList in the same way you bind to the open event.
$('#jqxDropDownList').on('close', function (event) { $('#filmPicture2').jqxTooltip('close'); });
In this case, when the drop down is closed, the tooltip will be closed too.
Please refer to this drop down list example.Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comHi fruitik,
Please send a working fiddle/jsEditor demo with your actual code for better analyze.
Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comNovember 17, 2016 at 5:30 pm in reply to: overlapping of x-axis values overlapping of x-axis values #89127Hi adroit18,
Please, send a working jsfiddle/jsEditor example with your code for a representation of the problem.
Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comHi fruitik,
You can use
$("#jqxgrid .jqx-grid-cell-pinned").eq(row).css("background-image", "none");
if you want to hide particular arrow.
If you want to prevent openning openning of the row details use :$("#jqxgrid .jqx-grid-cell-pinned").eq(row).css("background-image", "none"); $("#jqxgrid .jqx-grid-cell-pinned").eq(row).on("mousedown", function (e) { e.stopPropagation(); });
Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comNovember 17, 2016 at 4:20 pm in reply to: Cell hover background – transparent Cell hover background – transparent #89122Hi VitaliyST,
You can try to rewrite the CSS of the cells in both cases, using theme’s background color settings.
Here is a demo of a grid without hover effect.Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comNovember 14, 2016 at 10:46 am in reply to: Nested jqxGrid in complete angular implemetation Nested jqxGrid in complete angular implemetation #89039Hi akadam,
Unfortunately, we don’t have such an example but you can create angular nested grid.
Please, refer to our Angular documentation. It can be helpful for you.Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comNovember 14, 2016 at 8:50 am in reply to: Async Server Side Validation Async Server Side Validation #89037Hi sydney,
Yes, jqxValidator must be used only for client side validation.
Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.comNovember 11, 2016 at 11:23 am in reply to: Nested jqxGrid in complete angular implemetation Nested jqxGrid in complete angular implemetation #89005Hi akadam,
In order to use JQWidgets with AngularJS you have to add references to jQuery, AngularJS, jqxCore and jqxAngular.
You cannot use JQWidgets without jQuery.Best Regards,
Ivailo IvanovjQWidgets Team
http://www.jqwidgets.com -
AuthorPosts