When using jQueryUI samples on a website ( browser theme ) everything looks great. But, when I put the code and theme into my application, size is a way out of the bump (I'm trying to use the Redmond theme).
Any ideas as to why these patterns look so different? In the application that I built, there is only 1 CSS link that is for the Redmond theme ... These images below exactly correspond to how they were displayed in the browser.
My application:
alt text http://www.imageunload.com/public/14462/jQueryUI.png
Example jQuery user interface:
alt text http://www.imageunload.com/public/14463/jQueryUI-Sample.png
My application code:
<div>
<asp:TextBox ID="txtDateSample" runat="server"></asp:TextBox>
</div>
</form>
<script type="text/javascript" language="javascript">
$(function() {
$('#<%= txtDateSample.ClientID %>').datepicker({
showButtonPanel: true,
showOn: 'button',
buttonImage: '../Graphics/Icons/calendar.png',
buttonImageOnly: true
});
});
</script>
Firebug Div:
<div id="ui-datepicker-div" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all ui-helper-hidden-accessible"/>