jQWidgets Forums
Forum Replies Created
-
Author
-
December 22, 2020 at 2:48 pm in reply to: Blocking input on input field in jqxpopover Blocking input on input field in jqxpopover #114079
Thank you!
In the example it really works … Tomorrow I’ll try it at myself.But let me ask you another question: initContent is called on the first call once, and I need to rebuild the popover content via ajax, on each popover call.
I have not clarified yet if there are any nuances if the popover call comes from a dialog (in my case, this is exactly the case)
Sorry for the English, I hope I clearly described the situation)
September 12, 2018 at 10:09 am in reply to: jqxGrid Scrolls to Top of Grid Automatically On Click jqxGrid Scrolls to Top of Grid Automatically On Click #101963yes it’s understandable, but when you use the button to expand the details of the line that’s left in the column, it does not happen, the line just opens wherever it is located at the bottom or top of the browser window, and if you use a cell click or double click to expand the details of the line, skips to the top, that’s what’s strange, then jump should and when you open the button on the left (sorry for my English)
September 11, 2018 at 3:48 pm in reply to: jqxGrid Scrolls to Top of Grid Automatically On Click jqxGrid Scrolls to Top of Grid Automatically On Click #101935P.S. The latest version of jqxWidgets 6.0.6 is used
September 11, 2018 at 3:47 pm in reply to: jqxGrid Scrolls to Top of Grid Automatically On Click jqxGrid Scrolls to Top of Grid Automatically On Click #101934Hello!
Nothing has changed since the last message?
I have the same problem, it happens when I want to see the details of the string using the ‘showrowdetails’ method when double-clicking on the row ‘rowdoubleclick’ or ‘celldoubleclick’var expandData = []; $ ('# glossaryTable'). on ("rowdoubleclick", function (event) { var rowindex = event.args.rowindex; if (expandData [rowindex] === false) { if (event.args.datafield! = null) { $ ('# glossaryTable'). jqxGrid ('showrowdetails', rowindex); } else { $ ('# glossaryTable'). jqxGrid ('hiderowdetails', rowindex); } } else { if (event.args.datafield! = null) { $ ('# glossaryTable'). jqxGrid ('hiderowdetails', rowindex); } else { $ ('# glossaryTable'). jqxGrid ('showrowdetails', rowindex); } } expandData [rowindex] =! expandData [rowindex]; });
If I comment on the methods ‘showrowdetails’ and ‘hiderowdetails’, then there is no jump up …
What could be the problem? Search the forum did not give anything …September 4, 2018 at 9:37 am in reply to: jxqGrid inside jqxTooltip jxqGrid inside jqxTooltip #101840Hello Hristo!
Oh great! Thank you, I will try to do so!
So far I’ve implemented the table in jqxWindow.January 30, 2018 at 9:31 am in reply to: Not work demo jqxtabs in ie8 Not work demo jqxtabs in ie8 #98516It’s a pity. I attached a screenshot, but it was deleted by the moderator.
January 30, 2018 at 6:46 am in reply to: Not work demo jqxtabs in ie8 Not work demo jqxtabs in ie8 #98508Stanislav, hello! Is there any news on my problem?
January 25, 2018 at 9:45 am in reply to: Not work demo jqxtabs in ie8 Not work demo jqxtabs in ie8 #98444Hello, Stanislav!
Even the default functionality does not work in the demo version (.. \ jqwidgets-ver5.5.0 \ demos \ jqxtabsdefaultfunctionality.htm)
The code is the same as in the demo version downloaded from this site
<!DOCTYPE html> <html lang="en"> <head> <meta name="keywords" content="jQuery Tabs, Tabs Widget, TabView, jqxTabs" /> <meta name="description" content="The jqxTabs is breaking the content into multiple sections. You can populate it from 'UL' for the tab titles and 'DIV' for it's contents." /> <title id='Description'>The jqxTabs is breaking the content into multiple sections. You can populate it from 'UL' for the tab titles and 'DIV' for it's contents. </title> <link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1 maximum-scale=1 minimum-scale=1" /> <script type="text/javascript" src="../../scripts/jquery-1.12.4.min.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxtabs.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxcheckbox.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxlistbox.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/jqxcombobox.js"></script> <script type="text/javascript" src="../../scripts/demos.js"></script> <script type="text/javascript"> $(document).ready(function () { // Create jqxTabs. $('#tabs').jqxTabs({ width: getWidth('tabs'), height: 200, position: 'top'}); $('#settings div').css('margin-top', '10px'); $('#animation').jqxCheckBox({ theme: theme }); $('#contentAnimation').jqxCheckBox({ theme: theme }); $('#animation').on('change', function (event) { var checked = event.args.checked; $('#tabs').jqxTabs({ selectionTracker: checked }); }); $('#contentAnimation').on('change', function (event) { var checked = event.args.checked; if (checked) { $('#tabs').jqxTabs({ animationType: 'fade' }); } else { $('#tabs').jqxTabs({ animationType: 'none' }); } }); }); </script> </head> <body class='default'> <div id='tabs'> <ul> <li style="margin-left: 30px;">Node.js</li> <li>JavaServer Pages</li> <li>Active Server Pages</li> <li>Python</li> <li>Perl</li> </ul> <div> Node.js is an event-driven I/O server-side JavaScript environment based on V8. It is intended for writing scalable network programs such as web servers. It was created by Ryan Dahl in 2009, and its growth is sponsored by Joyent, which employs Dahl. Similar environments written in other programming languages include Twisted for Python, Perl Object Environment for Perl, libevent for C and EventMachine for Ruby. Unlike most JavaScript, it is not executed in a web browser, but is instead a form of server-side JavaScript. Node.js implements some CommonJS specifications. Node.js includes a REPL environment for interactive testing. </div> <div> JavaServer Pages (JSP) is a Java technology that helps software developers serve dynamically generated web pages based on HTML, XML, or other document types. Released in 1999 as Sun's answer to ASP and PHP,[citation needed] JSP was designed to address the perception that the Java programming environment didn't provide developers with enough support for the Web. To deploy and run, a compatible web server with servlet container is required. The Java Servlet and the JavaServer Pages (JSP) specifications from Sun Microsystems and the JCP (Java Community Process) must both be met by the container. </div> <div> ASP.NET is a web application framework developed and marketed by Microsoft to allow programmers to build dynamic web sites, web applications and web services. It was first released in January 2002 with version 1.0 of the .NET Framework, and is the successor to Microsoft's Active Server Pages (ASP) technology. ASP.NET is built on the Common Language Runtime (CLR), allowing programmers to write ASP.NET code using any supported .NET language. The ASP.NET SOAP extension framework allows ASP.NET components to process SOAP messages. </div> <div> Python is a general-purpose, high-level programming language[5] whose design philosophy emphasizes code readability. Python claims to "[combine] remarkable power with very clear syntax",[7] and its standard library is large and comprehensive. Its use of indentation for block delimiters is unique among popular programming languages. Python supports multiple programming paradigms, primarily but not limited to object-oriented, imperative and, to a lesser extent, functional programming styles. It features a fully dynamic type system and automatic memory management, similar to that of Scheme, Ruby, Perl, and Tcl. Like other dynamic languages, Python is often used as a scripting language, but is also used in a wide range of non-scripting contexts. </div> <div> Perl is a high-level, general-purpose, interpreted, dynamic programming language. Perl was originally developed by Larry Wall in 1987 as a general-purpose Unix scripting language to make report processing easier. Since then, it has undergone many changes and revisions and become widely popular amongst programmers. Larry Wall continues to oversee development of the core language, and its upcoming version, Perl 6. Perl borrows features from other programming languages including C, shell scripting (sh), AWK, and sed.[5] The language provides powerful text processing facilities without the arbitrary data length limits of many contemporary Unix tools, facilitating easy manipulation of text files. </div> </div> <div id='settings'> <div id='animation'> Enable Select Animation</div> <div id='contentAnimation'> Enable Content Animation</div> </div> </body> </html>
-
AuthorPosts