jQWidgets Forums
jQuery UI Widgets › Forums › Getting Started › JQWidget 2.9.3 to JQwidget 3.0.4
Tagged: jqwidget 3.0.4
This topic contains 5 replies, has 2 voices, and was last updated by Peter Stoev 11 years, 6 months ago.
-
Author
-
Hi all,
We are using JQWidget 2.9.3 version and the site is working fine, planning to upgrade into JQWidget 3.0.4.
1) Is there any drawback, please give your suggestions?
2) And I updated JQWidget 3.0.4 version in our site, while login i am getting this error “A potentially dangerous Request.Form value was detected from the client” . Please help.NOTE: Same login was working fine in JQWidget 2.9.3 version.
Hi Siva,
I would suggest you to look at our Release Notes page before upgrading to a new version as there could be some breaking changes. We are also not aware what could be the issue on your side with such an error.
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.com/When we are using JQwidget 2.9.3, we got the combobox value by using this “(‘#someid’).jqxComboBox(‘val’)” and it returns the exact value. But when we are try to using JQWidget 3.0.4, the above same code not return the exact value. It will return the value like “<div ……….”. May i know the reason please?
Hi Siva,
Sorry, but that does not happen on our side with the current version of jQWidgets.
<!DOCTYPE html> <html lang="en"> <head> <meta name="keywords" content="jQuery ComboBox, jqxComboBox, DropDownList, List, ListBox, Popup List, jqxDropDownList, jqxListBox, List Widget, ListBox Widget, DropDownList Widget" /> <meta name="description" content="The jqxComboBox comes with several useful events. When the user selects an item, the 'select' and 'unselect' events are triggered. "/> <title id='Description'>The jqxComboBox comes with several useful events. When the user selects an item, the 'select' and 'unselect' events are triggered. </title> <link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src="../../scripts/jquery-1.10.2.min.js"></script> <script type="text/javascript" src="../../scripts/demos.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxbuttons.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxscrollbar.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxlistbox.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxcombobox.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxpanel.js"></script> </head> <body> <div id='content'> <script type="text/javascript"> $(document).ready(function () { var source = [ "Affogato", "Americano", "Bicerin", "Breve", "Café Bombón", "Café au lait", "Caffé Corretto", "Café Crema", "Caffé Latte", "Caffé macchiato", "Café mélange", "Coffee milk", "Cafe mocha", "Cappuccino", "Carajillo", "Cortado", "Cuban espresso", "Espresso", "Eiskaffee", "The Flat White", "Frappuccino", "Galao", "Greek frappé coffee", "Iced Coffee", "Indian filter coffee", "Instant coffee", "Irish coffee", "Liqueur coffee" ]; // Create a jqxComboBox $("#jqxComboBox").jqxComboBox({selectedIndex: 0, source: source, width: '200px', height: '25px'}); // subscribe to 'unselect' and 'select' events. alert($("#jqxComboBox").jqxComboBox('val')); }); </script> <div style='float: left; width: 500px;' id='jqxWidget'> <div style='float: left; margin-top: 10px;' id='jqxComboBox'> </div> <div style='font-size: 12px; font-family: Verdana; margin-left: 20px; margin-top: 10px; float: left;'> <div> <span> Events:</span> <div id='Events'> </div> </div> </div> </div> </div> </body> </html>
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.com/Hi peter,
One more conflict in jqwidget3.0.4 grid control- when we are using jqwidget2.9 grid control on loading itself the grid width fully occupied (width:1240px) and its working fine.
But in jqwidget3.0.4 grid control on loading it will take the width only 730px and remaining width are empty space. Once you click on any action or refresh the page, then it will take occupied the full width (width:1240px).Example:
class=”jqx-widget-header jqx-widget-header-test jqx-grid-header jqx-grid-header-test” in style width:790px.After refresh the page or click any action,
class=”jqx-widget-header jqx-widget-header-test jqx-grid-header jqx-grid-header-test” in style width:1240px.If you know the reason, please help me. thanks…
Hi Siva,
I do not know how you defined the width on your side or how you initialize the widget. Here’s a sample with setting the Grid’s width in percentages: http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/autosize.htm
Best Regards,
Peter StoevjQWidgets Team
http://www.jqwidgets.com/ -
AuthorPosts
You must be logged in to reply to this topic.