jQWidgets Forums
Forum Replies Created
-
Author
-
March 11, 2013 at 1:10 pm in reply to: Adding a stile to button inside grid Adding a stile to button inside grid #16686
Exscuse me, if i have to put some button inside a cell,
I have to keep standard button or only customize by my self? Therefore is not possible to have jqwidgets button inside a cell? True?
jQuery(‘#UserConfirmPassword’).jqxInput({ height: 30, width: 350, theme: “metro” });
th>Conferma password</th><td><input type="password" name="data[User][confirm_password]" size="35" maxlength="64" id="UserConfirmPassword" /></td>
March 2, 2013 at 11:11 am in reply to: Autocomplete Element behind grid title Autocomplete Element behind grid title #16255I modified the css,
overriding the z-index property to 9999
of the .jqx-menu-dropdownlist .
Thanks
February 28, 2013 at 2:40 pm in reply to: Autocomplete Element behind grid title Autocomplete Element behind grid title #16066Hello,
it didn’t work. I also notice that if i click with mouse on input it appear me some element of the autocomplete in grey, and that therefore seems to have 2 autocomplete in one.
February 28, 2013 at 2:04 pm in reply to: Autocomplete Element behind grid title Autocomplete Element behind grid title #16058I think is better to see the page source code…
for the element of the autocomplete
The grid element is build inside a div of name grid2 with
jQuery(“#grid2”).jqxGrid(
{
width: ‘95%’,
theme: “office”,
sortable: true,
filterable: true,
/*ready: function () {
addfilter();
},*/
//autoshowfiltericon: true,
source: dataAdapter,
selectionmode: ‘multiplecellsextended’,
columns: [
{ text: ‘IP’, datafield: ‘ip’, width: ‘15%’ },
{ text: ‘Description’, datafield: ‘description’, width: ‘15%’ },
{ text: ‘Username’, datafield: ‘username’, width: ‘10%’ },
{ text: ‘Name’, datafield: ‘complete_name’, width: ‘15%’, cellsalign: ‘right’ },
{ text: ‘Action’, datafield: ‘group_description’, width: ‘15%’, cellsalign: ‘right’ },
{ text: ‘Operation’, datafield: ‘category’, width: ‘15%’, cellsalign: ‘right’ },
{ text: ‘Date’, datafield: ‘creation_time’, width: ‘15%’, cellsalign: ‘right’, cellsformat: ‘yyyy-M-dd H:mm:ss’ }
]
});The input element is written with an array of values arr in the following
jQuery(“#input1”).jqxInput({placeHolder: “Enter an IP”, height: 25, width: 200, minLength: 1, theme: “office”, source: arr});
Firebug give me the z-index of the element of the div with default
for the element of the header of the column and in firebug
element.style {
height: 100%;
left: 0;
position: absolute;
width: 162.15px;
z-index: 499;
}Further i found in the css
.jqx-grid-column-header a:link, .jqx-grid-column-header a:visited
{
*color: expression(this.parentNode.currentStyle[‘color’]);
}with the *. Is it an error?
-
AuthorPosts