问题标签 [jqui]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
479 浏览

javascript - Attaching event to element in jqMobi/jqUi header

If I wire up a click event for a button that is part of a custom header or footer, the event never fires. I have to register the onclick event directly in the html.

notice, the sendBtn anchor. I used to be able fire this event by declaring:

$("sendBtn").on('click', function(){instance.SendSegment($("#segment").val());});

It seems any elements within a header, footer, or modal do not get attached, or removed. I KNOW i am missing something

0 投票
1 回答
198 浏览

jqmobi - 刷新jqMobi中的文本输入值

我在自定义页脚中有一个文本输入。我正在尝试使用以下方法更新文本:

我也试过

两者都返回对象,但都不显示更新的文本输入。输入所属的页脚当时没有显示,我认为这可能与它有关,因为在显示面板时执行相同的操作。我也尝试$.ui.updateNavbarElements($("#navbar #segment"))在每次调用后添加,它会引发错误。

另外,appMobi XDK 中包含的 jq.web.min.js 与 CDN 上的 jqMobi 脚本有什么区别?它们是否相同,只是 CDN 是最新的?

0 投票
2 回答
4503 浏览

jquery - Jquery UI 1.9 Menu - 你如何保持活动菜单项突出显示?

我正在使用 Jquery UI “菜单” API 在应用程序中创建导航菜单。

菜单绘制和链接很好,当悬停在它上面时,会应用自然的 jquery ui css,为悬停的元素提供 ui-state-focus 类。当您将鼠标从元素上移开时,它会删除此类,这会将元素置于默认的未突出显示状态。

我已经尝试添加标准的 jquery ui css 类“ui-state-active”,它将特定的 CSS 应用于给定此类的菜单中的元素。但是,当悬停任何其他元素时,此 ui-state-active 类将从活动元素中删除,即使尚未进行新选择(通过单击),也有效地使悬停杀死活动选择。

我希望能够保持悬停类的添加,但保持 ACTIVE 类不变,以便在每个页面上,活动菜单元素将始终具有活动类。

关于在 jquery UI 菜单 api 中标记活动元素的正确方法有什么想法吗?

0 投票
0 回答
218 浏览

javascript - 将 HTML 页面加载到 div 中

我的网站上的以下代码有问题:

当它在 Chrome 中运行时,效果很好,但是当我在 Firefox 中运行我的网站时,它不会加载gallery.html页面。

有解决方案吗?

0 投票
3 回答
550 浏览

html - 在某些面板上不显示侧边菜单

有没有办法在英特尔的 App Framework 2.0 UI 上不使用某些面板上的侧边菜单?我有一个通过<nav>标签定义的侧边菜单,但我只想在某些面板上显示它。

0 投票
1 回答
189 浏览

javascript - Jquery Jqui Modal Window: opening same modal multiple times

I'm working on a javascript function that opens a jquery modal window and makes an ajax call to populate the modal. I've included 'left' and 'right' div ids- clicking one changes the content of the modal window (scrolling through a photo slideshow).

Everything works great, except one thing: If I open the modal and then close it, opening it a 2nd time causes these 'left/right' buttons to count each click as two (click 'right' once, but move two images over). If I close the window and reopen it again, the counting again increases by 1 (3 changes for 1 click).

The only workaround that fixes this is to reload the page when the modal window is closed- but does anyone know of a better solution? Basically, I want to 'reset' the modal window, but don't want to destroy it- I'd like to be able to open/close the modal multiple times and have these right/left buttons work.

The part of the function that I've used to create these buttons is below- thanks for any suggestions/ideas.

0 投票
1 回答
149 浏览

css - 使用 jqui_sortable 排序后 div 元素之间的间距失真

虽然在我闪亮的应用程序中构建了一个非常好的附加功能,用户可以在其中重新组织页面内的图,但我遇到了 1 个问题。

我注意到正在重新定位(排序)的 div 元素之间的间距在这样做时会发生变化,从而导致之后的图错位。我试图将margin值调整为无,0 或一定数量的像素,但这似乎并不能解决这个问题。

我为测试/说明问题而制作的应用程序发布在下面,我省略了图表以简化它:

这张图片显示了排序后的问题:

在此处输入图像描述

第二个问题是悬停绘图时出现的空白。

我试图从这个“非 R-Shiny”问题中添加 css,但无法使其工作。

空白

0 投票
1 回答
401 浏览

javascript - 使用 jQuery 在 R-Shiny 中调整列宽

我想使用 jQuery 中的 resizable 函数来调整闪亮应用程序中的列宽。不幸的是,我不确定如何将选项传递给 jqui_resizable 函数,以便我可以传递also_resize 函数,或者设置 maxHeight/minHeight。

理想情况下,我希望列具有设定的高度(即全屏),但同步可调整大小的宽度(这也占据了屏幕的整个宽度)。

下面是我非常简单的尝试来展示我想要的东西。不幸的是,它不起作用,因为在给定列宽的情况下,调整一列的大小以使其更大会将另一列向下移动一行。

任何关于如何做到这一点的想法将不胜感激!谢谢!