jQWidgets Forums
Forum Replies Created
-
Author
-
solved
Hi Dimitar,
the css file is from your themebuilder. I guess its in the right formatter:
.jqx-widget-myCss
{
font-family: Verdana;
}
.jqx-widget-content-myCss
{
color: #222222;
border-color: #AAAAAA;
background-color: #FFFFFF;
font-family: Verdana;
}
.jqx-widget-header-weinor
{
color: #F9F7F7;
border-color: #AAAAAA;
background-color: #CC0000;
font-family: Verdana;
}
.jqx-grid-cell-myCss
{
background-color: #FFFFFF;
}
.jqx-fill-state-normal-myCss
{
color: #222222;
border-color: #AAAAAA;
background-color: #EFEFEF;
}
.jqx-grid-selectionarea-myCss
{
border-color: #AAAAAA;
background-color: #EFEFEF;
}
.jqx-grid-cell-sort-myCss, .jqx-grid-cell-filter-myCss, .jqx-grid-cell-pinned-myCss
{
background-color: #EFEFEF;
color: #000000;
}Hello Dimitar,
i deleted the reference to the “jqx.classic.css”
But it stoll doesn´t work:
// Grid auf ein div anwenden und initialisieren.
$(‘#divListe’).jqxGrid({
theme: ‘myCss’,
width: 900,
height: 800,
source: dataAdapter,
groupable: true,
columns: [
{ text: ‘Dok Id’, datafield: ‘DokId’, width: 60 },
{ text: ‘Betreff’, datafield: ‘Titel’, width: 350 },
{ text: ‘Erstellt am’, datafield: ‘Erstellt_am’ },
{ text: ‘Erstellt von’, datafield: ‘Erstellt_von’, width: 85 },
{ text: ‘Referenznummer’, datafield: ‘KundenNr’, width: 115 },
{ text: ‘Dokument Art’, datafield: ‘Tabelle’ },
],
groups: [‘Erstellt_von’]
});my includes:
Styles:
link rel=”stylesheet” href=”/_PublicResources/Styles/jqx/jqx.base.css” type=”text/css” media=”all”
link rel=”stylesheet” href=”/_PublicResources/Styles/jqx/jqx.myCss.css” type=”text/css” media=”all”Scripts:
script src=”/_PublicResources/JavaScript/PlugIns/jqx/jqxcore.js” type=”text/javascript”>
script src=”/_PublicResources/JavaScript/PlugIns/jqx/jqxscrollbar.js” type=”text/javascript”>
script src=”/_PublicResources/JavaScript/PlugIns/jqx/jqxbuttons.js” type=”text/javascript”>
script src=”/_PublicResources/JavaScript/PlugIns/jqx/jqxlistbox.js” type=”text/javascript”>
script src=”/_PublicResources/JavaScript/PlugIns/jqx/jqxdata.js” type=”text/javascript”>
script src=”/_PublicResources/JavaScript/PlugIns/jqx/jqxdropdownlist.js” type=”text/javascript”>
script src=”/_PublicResources/JavaScript/PlugIns/jqx/jqxgrid.js” type=”text/javascript”>
script src=”/_PublicResources/JavaScript/PlugIns/jqx/jqxgrid.columnsresize.js” type=”text/javascript”>
script src=”/_PublicResources/JavaScript/PlugIns/jqx/jqxmenu.js” type=”text/javascript”>
script src=”/_PublicResources/JavaScript/PlugIns/jqx/getTheme.js” type=”text/javascript”>January 17, 2013 at 10:08 am in reply to: Error in sample Code: Cannot read property ‘msie’ of undefined Error in sample Code: Cannot read property ‘msie’ of undefined #13758Ah, okay! I missunderstand u, now its working really fine!
Thank you!Best Regards,
IpadJanuary 17, 2013 at 9:51 am in reply to: Error in sample Code: Cannot read property ‘msie’ of undefined Error in sample Code: Cannot read property ‘msie’ of undefined #13751it is jquery 1.9.0, which is embedded in the frist line after the “head”-tag
best Regards,
Ipad -
AuthorPosts