问题列表 - 第30587页

Flex Air,静态主窗口参考?

我可以在组件中获得对Air Flex应用程序主窗口的引用吗?(该组件不在主MXML中)

apache-flex air adobe flex4

2
推荐指数
1
解决办法
1016
查看次数

JQuery UI Dialog很慢

我最近遇到了一些痛苦.我一直在使用JQuery对话框在Web应用程序中显示一些配置屏幕.没什么特别的.但是我有几个边缘情况,这个配置表单将显示一些... 11000选项的下拉列表.[DODGES ROTTEN TOMATOES]

不用说,它很慢.JQuery Dialog最多可能需要9秒才能显示(并且init也很慢).

第一个问题是:有没有办法加速对话框?从它看起来,它每次打开时都会复制所有内容.如果有办法避免这种情况,那会有所帮助.

第二个问题:当被要求显示大量数据时,是否还有其他jQuery对话框表现更好?

和往常一样,欢迎其他解决方案.一些自动完成ajax不会坏,但可能仍然很慢,除非它至少需要几个初始字符.

jquery jquery-ui-dialog

9
推荐指数
1
解决办法
7220
查看次数

Noob jQuery"$"函数返回问题

HTML:

<input type="text" id="priceperperson1" name="priceperperson1" />
<input type="text" name="personsvalue1" class="countme" readonly="readonly" />
Run Code Online (Sandbox Code Playgroud)

JS:

jQuery(document).ready(function($) {
$('div.pricerow input.countme').each(function(){ 
var id = this.name.substr(this.name.length-1);
alert($('input#priceperperson'+id));
this.value = parseInt($('priceperperson'+id).value) * parseInt($('countpersons'+id).value); 
});
});
Run Code Online (Sandbox Code Playgroud)

缩短尽可能缩短.所有我警惕的是"对象"......价值是NaN.我试图在id上"parseInt".我试过了:

$('[name=priceperperson'+id+']');
$('priceperperson'+id);
Run Code Online (Sandbox Code Playgroud)

我做错了什么?

html javascript jquery object

0
推荐指数
1
解决办法
161
查看次数

不返回传递的值

// here is the full code.
// I would expect the btnLine_Click() method to start the timer (which it does) and then 
// accept "angle" from the "public float myangle" getter but it does not. So it only draws // one 30 degree hard coded  line.  I desire the line to be incremented around in 10
// degree steps sort of like the second hands of a clock.

using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms; …

c#

-1
推荐指数
1
解决办法
253
查看次数

PHP:如何将0777(八进制)转换为字符串?

我有一个八进制,我用来设置目录的权限.

$permissions = 0777;
mkdir($directory, $permissions, true)
Run Code Online (Sandbox Code Playgroud)

我想将它与字符串进行比较

$expectedPermissions = '0777'; //must be a string
if ($expectedPermissions != $permissions) {
    //do something
}
Run Code Online (Sandbox Code Playgroud)

这种比较最好的方法是什么?

php

6
推荐指数
2
解决办法
1989
查看次数

C++互斥和const正确性

是否存在关于何时基本上只读的方法,但具有可能需要修改的互斥锁/锁定的约定,是否为常量?

如果没有一个,如果这样的方法是什么将是不利/坏设计 const

谢谢

c++

41
推荐指数
2
解决办法
1万
查看次数

多次尝试或一次?

通常,我会这样做:

try
{
    code

    code that might throw an anticipated exception you want to handle

    code

    code that might throw an anticipated exception you want to handle

    code
}
catch 
{

}
Run Code Online (Sandbox Code Playgroud)

这样做有什么好处吗?

code

try
{
    code that might throw an anticipated exception you want to handle
}
catch
{
}

code

try
{
    code that might throw an anticipated exception you want to handle
}
catch
{
}

code
Run Code Online (Sandbox Code Playgroud)

更新:

我最初问这个问题w /引用C#,但正如A. Levy评论的那样,它可以应用于任何异常处理语言,所以我让标签反映了这一点.

exception-handling

63
推荐指数
5
解决办法
8万
查看次数

NUnit嵌套集合比较

是否有类似于CollectionAssert.AreEquivalent()的东西,它适用于嵌套集合?

以下代码......

CollectionAssert.AreEquivalent ( 
    new Dictionary<int, Dictionary<int, string>>
    {
        { 1, new Dictionary < int, string > { { 10, "foo" }, { 11, "bar" }, { 12, "spam" } } },
        { 2, new Dictionary < int, string > { { 20, "eggs" }, { 21, "eels" } } },
        { 3, new Dictionary < int, string > { { 30, "hovercraft" } } }
    },
    new Dictionary<int, Dictionary<int, string>>
    {
        { 1, new Dictionary < int, string > …
Run Code Online (Sandbox Code Playgroud)

c# collections nunit dictionary assert

9
推荐指数
1
解决办法
780
查看次数

我应该学习Google App Inventor作为Android的Java补充

只是好奇.我已经是一个Java机器人,但我对Android的新应用程序发明者测试版感兴趣.我想知道"真正的"开发人员在想什么.很多人想开发一个Android应用程序,但没有真正的编程技巧.似乎许多应用程序可以与应用程序发明者一起编写 - 不确定,因为我还没有尝试过.

android app-inventor

9
推荐指数
2
解决办法
4858
查看次数

试着编写一个只匹配数字,空格,括号,+和 - 的正则表达式

我正在尝试写一个常规,检查数字,空格,括号,+和 - 这是我到目前为止:

/\d|\s|\-|\)|\(|\+/g
Run Code Online (Sandbox Code Playgroud)

但我得到这个错误:无法匹配)在正则表达式中任何建议都会有所帮助.谢谢

javascript regex validation

1
推荐指数
1
解决办法
1338
查看次数