Note that there are some explanatory texts on larger screens.

plurals
  1. POhow to use jquery plugin silviomoreto?
    text
    copied!<p>i am trying to this plugin <a href="http://silviomoreto.github.com/bootstrap-select/" rel="nofollow">http://silviomoreto.github.com/bootstrap-select/</a></p> <p>It transforms your select into a bootstrap dropdown button. It keeps the select to keep the form consistency, so you can submit the selected value. however, no transformation occurs.</p> <pre><code>&lt;%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site1.master.cs" Inherits="Final_Year_Project_Allocation_System.Site1" %&gt; &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head runat="server"&gt; &lt;!-- Bootstrap --&gt; &lt;link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" media="screen" /&gt; &lt;script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="bootstrap/js/bootstrap.min.js" type="text/javascript"&gt;&lt;/script&gt; &lt;link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" /&gt; &lt;!-- styling select --&gt; &lt;link href="silviomoreto-bootstrap-select-d4ec9bd/bootstrap-select.css" rel="stylesheet" type="text/css" /&gt; &lt;script src="silviomoreto-bootstrap-select-d4ec9bd/bootstrap-select.js" type="text/javascript"&gt;&lt;/script&gt; &lt;link href="silviomoreto-bootstrap-select-d4ec9bd/bootstrap-select.min.css" rel="stylesheet" type="text/css" /&gt; &lt;script src="silviomoreto-bootstrap-select-d4ec9bd/bootstrap-select.min.js" type="text/javascript"&gt;&lt;/script&gt; &lt;title&gt;:: Project Allocation System&lt;/title&gt; &lt;asp:ContentPlaceHolder ID="head" runat="server"&gt; &lt;/asp:ContentPlaceHolder&gt; &lt;/head&gt; &lt;body&gt; &lt;div class="container-fluid"&gt; &lt;form id="form1" runat="server" class="form-horizontal"&gt; &lt;div class="span12"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt; &lt;div class="row-fluid"&gt; &lt;div class=" span3"&gt; &lt;!--Sidebar content--&gt; &lt;asp:ContentPlaceHolder ID="SideBarContent" runat="server"&gt; &lt;/asp:ContentPlaceHolder&gt; &lt;/div&gt; &lt;div class="span9"&gt; &lt;!--Body content--&gt; &lt;asp:ContentPlaceHolder ID="BodyContent" runat="server"&gt; **&lt;select class="selectpicker"&gt; &lt;optgroup label="Picnic"&gt; &lt;option&gt;Mustard&lt;/option&gt; &lt;option&gt;Ketchup&lt;/option&gt; &lt;option&gt;Relish&lt;/option&gt; &lt;/optgroup&gt; &lt;optgroup label="Camping"&gt; &lt;option&gt;Tent&lt;/option&gt; &lt;option&gt;Flashlight&lt;/option&gt; &lt;option&gt;Toilet Paper&lt;/option&gt; &lt;/optgroup&gt; &lt;/select&gt;** &lt;/asp:ContentPlaceHolder&gt; &lt;/div&gt; &lt;/div&gt; &lt;/form&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload