Tag: twitter bootstrap rails

未捕获的错误:没有这样的方法“显示”工具提示小部件实例

我正在使用ajax来提交我的registry单,但有一个问题,试图设置工具提示来显示从控制器返回的错误的错误消息。 JavaScript的: $(document).on('ajax:success', '.user_modal_form', function(e, data, status, xhr) { var context; context = $(this); if (data.success) { $('button', context).hide(); $('.spinner', context).show(); location.reload(); } else { if (data.errors != null) { $.each(data.errors, function(key, error) { var field; field = $("#athlete_" + key); field.attr('data-original-title', "" + key + " " + error).tooltip({ trigger: 'manual' }).tooltip("show"); }); } […]

字体真棒,inputtypes“提交”

在font-awesome中似乎没有inputtypes“提交”的类。 是否有可能使用字体真棒buttoninput一些类? 我已经在应用程序中为所有button(实际上与twitter-bootstrap中的类“btn”链接)添加了图标,但不能在“inputtypes提交”上添加图标。 或者,如何使用这个代码: input#image-button{ background: #ccc url('icon.png') no-repeat top left; padding-left: 16px; height: 16px; } HTML: <input type="submit" id="image-button">Text</input> (我从HTML采取:如何使其中的文字+图像提交button? )与字体真棒?

Bootstrap 3 + Rails 4 – 某些Glyphicons无效

我想在我的rails 4应用程序中使用bootstrap 3。 在本教程中,使用这个 github页面的bootstrap saas来设置bootstrap 3。 Bootstrap工作正常,但glyphicons没有按预期工作。 某些glyphicons根本不显示。 例如,我厌倦了在我的application.html.erb中显示一些testing: glyphicon glyphicon-floppy-disk -> <span class="glyphicon glyphicon-floppy-disk"></span> </br> glyphicon glyphicon-plus -> <span class="glyphicon glyphicon-plus"></span> </br> glyphicon glyphicon-minus -> <span class="glyphicon glyphicon-minus"></span> 图标呈现像这样 软盘图标根本不显示(显示无效的文字)正和负的sigs不是粗体,比bootstap网站上显示的小。 我也在轨道控制台上看到以下消息。 Started GET "/fonts/glyphicons-halflings-regular.woff" for 127.0.0.1 at 2014-02-22 16:29:54 -0800 ActionController::RoutingError (No route matches [GET] "/fonts/glyphicons-halflings-regular.woff"): Started GET "/fonts/glyphicons-halflings-regular.ttf" for 127.0.0.1 at 2014-02-22 […]