小编Jon*_*han的帖子

Bootstrap:tr类"警告"在条带表中不起作用

我有定义的表<table class="table table-striped">与像一些行<tr class="success">,<tr class="info"><tr class="warning">.

successinfo表行精细显示:红色和蓝色就像他们应该的.但是这些warning行并没有像预期的那样显示黄色.它们只是普通的,斑马条纹白色或灰色.

奇怪的是,如果我添加table-hover到表的类中,warning行将显示黄色,但仅在悬停时.该successinfo行,然而,总是打回原形,悬停或没有.

html css twitter-bootstrap

14
推荐指数
2
解决办法
3万
查看次数

TabHost with Activities与ActionBar with Fragments

我发现了一些与此问题有关的讨论,但没有明确或明确的.

构建基于选项卡的应用程序,似乎不得不在(A)使用TabHost与每个屏幕的活动和(B)为每个屏幕使用带有碎片的ActionBar之间进行选择.这引出了一些问题:

1)这是真实的困境,还是可以使用具有不同活动的ActionBar.

2)如果困境是真实的,那么为什么这样设置?Google是否计划弃用TabHost以及基于标签的导航的多活动方法?多活动方法有什么不利之处吗?

3)如果两种方法都将继续得到支持,每种方法的优缺点是什么?如果我选择ActionBar + Fragments,我会遇到任何陷阱吗?例如,当我希望我的一个选项卡式屏幕滑过/弹出一个额外的屏幕/片段时,我是否会在ActionBar中切换到/从选项卡切换到有趣的行为?

android android-tabhost android-fragments android-actionbar

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

Bootstrap中的单选按钮.form-horizo​​ntal

我正用撞击墙壁试图通过单独的单选按钮从Bootstrap中获得理智的行为.form-horizontal.

问题是让单选按钮和它们的标签对齐,同时还与表单的其余部分对齐.我管理的最好的是:

    <legend>New user</legend>
    <form accept-charset="UTF-8" action="#" class="form-horizontal" id="new_user" method="post">

        <div class="control-group">
          <label class="control-label" for="user_affiliation">Affiliation</label>
            <div class="controls">
              <input id="user_affiliation" name="user[affiliation]" size="30" type="text" />
            </div>
          </div>

        <div class="control-group">
          <div clas="controls">
            <div class="radio">
              <label>
                <input id="user_role_managing_editor" name="user[role]" type="radio" value="Managing editor">
                Managing editor
              </label>
              <label>
                <input id="user_role_area_editor" name="user[role]" type="radio" value="Area editor">
                Area editor
              </label>
              <label>
                <input id="user_role_author_or_referee" name="user[role]" type="radio" value="Author or referee">
                Author/referee
              </label>
            </div>
          </div>
        </div>

        <div style="text-align: center;">
          <input class="btn btn-primary" name="commit" type="submit" value="Register" />
        </div>

    </form>
Run Code Online (Sandbox Code Playgroud)

哪个让我这个:在此输入图像描述

正如您所看到的,单选按钮与表单的其余部分完全没有关系.他们应该与文本字段垂直排列,或者做一些比拥抱左边更合理的事情,好像这是一个 …

html css twitter-bootstrap

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

Net-SSH/Capistrano 问题:“无法解析 PKey:没有起始行”

多年来,我一直在使用 Capistrano 成功部署我的 Rails 3.2.13 应用程序。但是就在今天,我ArgumentError: Could not parse PKey: no start line在连接到服务器时遇到了可怕的情况。

我从其他帖子中了解到,这实际上是net-sshCapistrano 用来建立连接的gem的问题。显然,较旧net-ssh版本的 OpenSSH 与较新版本的 OpenSSH 创建的密钥文件不兼容。(例如,请参见此处此处。)

这种诊断得到以下支持:(a)我仍然可以从命令行通过 SSH 连接到我的服务器,以及(b)以下小irb会话:

irb(main):006:0> require 'net/ssh'
=> true
irb(main):007:0> Net::SSH::KeyFactory.load_private_key('~/.ssh/id_rsa')
ArgumentError: Could not parse PKey: no start line
Run Code Online (Sandbox Code Playgroud)

我想我最近在更改密码时更新了我的私钥文件,现在它与我的版本net-ssh(v2.7.0)不兼容。

我无法升级,net-ssh因为我一直在使用 Ruby 1.9.3。

有没有办法恢复到旧的/兼容版本的私钥文件?或者其他一些解决方案?

ssh capistrano openssh net-ssh ruby-on-rails-3

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

RadioButtons无法在动态创建的RadioGroup中正确选择/取消选择

当我在XML布局文件中创建一个RadioGroup时,一切都很好,但是当我动态创建它时,RadioButtons在选择另一个时不会取消选择:

在此输入图像描述

这是代码:

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    RadioGroup radioGroup = (RadioGroup) findViewById(R.id.radioGroup1);

    RadioButton radioButtonView = new RadioButton(this);
    radioButtonView.setText("RadioButton");
    radioGroup.addView(radioButtonView);

    RadioButton radioButtonView2 = new RadioButton(this);
    radioButtonView2.setText("RadioButton2");
    radioGroup.addView(radioButtonView2);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
}
}
Run Code Online (Sandbox Code Playgroud)

和布局文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >

<RadioGroup
    android:id="@+id/radioGroup1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true" >
</RadioGroup>
</RelativeLayout>
Run Code Online (Sandbox Code Playgroud)

java android radio-group radio-button

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