私はjqueryダイアログボックスで作業しています...背景色のテーマにGoogle APIを使用する方法を使用したくありません。例として独自のものを使用したい:閉じるボタンはXの円の中にある必要があり、タイトルバーの背景は#FFFFFF に設定し、ダイアログ ボックスの高さと幅を自分のデータに合わせて調整する必要があります (動的ではありません)。これまでのところ、ダイアログ ボックスで div をポップアップすることはできますが、高さと幅を変更することはできません。調整しました。誰かが私にチュートリアルや微調整を案内してくれませんか...どうもありがとう
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:rich="http://richfaces.org/rich"
xmlns:a4j="http://richfaces.org/a4j">
<h:head>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
<script src="JqueryLib/jquery.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script src="js/jquery-1.8.2.js"></script>
<h:outputStylesheet library="css" name="application_1.css"></h:outputStylesheet>
<style type="text/css">
</style>
<script>
$(document).ready(function(){
$("#viewDetails").click(function(){
$("#popup").dialog();
})
});
</script>
</h:head>
<body>
<form id="Form1">
<h:outputText id= "viewDetails" value="View Details" outcome="#"/>
<div id="popup" class="popup" title="MyTitle" style="display: none">
This is my data table....where I can not adjust the data inside the dialog box...
</div>
</form>
</body>
</ui:composition>
タイトルバーのテーマを持つGoogle APIを使用したくありません。CSSをカスタマイズしたい