jQWidgets Forums
Forum Replies Created
-
Author
-
January 26, 2019 at 12:21 pm in reply to: Why elements are not at the same level? Why elements are not at the same level? #103693
OK. All right.
Thank you Hristo,
Yes I want do this but my example
https://drive.google.com/file/d/1NJ-gN9LPzgpufqW7-t6-b_KuJRFAEXfU/view?usp=sharing
not work. When start only see menu, error in
$(“#grid”).jqxGrid( {
source: dataAdapter,
width: $(“#jqxMenu”).width(),
pageable: true,
autoheight: true,
virtualmode: true,
filterable: true,
ready: function () {$(“#grid”).jqxGrid(‘focus’);},
rendergridrows: function (params) { return params.data; },
pagerrenderer: pagerrenderer,
columns: [
{ text: ‘Година’, datafield: ‘godina’, align: ‘center’, cellsalign: ‘right’, width: 80 },
{ text: ‘Месец’, datafield: ‘mesec’, align: ‘center’, cellsalign: ‘right’, width: 80 },
{ text: ‘Исплата’, datafield: ‘isplata’, align: ‘center’, cellsalign: ‘right’, width: 80 },
{ text: ‘Стимулација’, datafield: ‘stimulacija’, align: ‘center’, cellsalign: ‘right’, width: 100 },
{ text: ‘ПФ’, datafield: ‘punfondsati’, align: ‘center’, cellsalign: ‘right’, width: 80,
renderer: function () {
return ‘<div style=”text-align: center; margin-top: 5px; margin-left: 5px;”>Пун фонд<br />сати</div>’;
} },
{ text: ‘Фонд сати’, datafield: ‘fondsati’, align: ‘center’, cellsalign: ‘right’, width: 80 },
{ text: ‘Цена рада’, datafield: ‘cenarada’, align: ‘center’, cellsalign: ‘right’, width: 80 },
{ text: ‘Регрес’, datafield: ‘regres’, align: ‘center’, cellsalign: ‘right’, width: 80 },
{ text: ‘ТО’, datafield: ‘topli’, align: ‘center’, cellsalign: ‘right’, width: 80,
renderer: function () {
return ‘<div style=”text-align: center; margin-top: 5px; margin-left: 5px;”>Топли<br />оброк</div>’;
} },
{ text: ‘МЦ’, datafield: ‘minimalna’, align: ‘center’, cellsalign: ‘right’, width: 110,
renderer: function () {
return ‘<div style=”text-align: center; margin-top: 5px; margin-left: 5px;”>Минимална<br />цена рада</div>’;
} }
]
});
but where ?October 22, 2016 at 5:49 am in reply to: I not see diference at code but error exists I not see diference at code but error exists #88403Why jqxMaskedInput not display 11.05.1968 for default value in this example?
$(“#datum”).jqxMaskedInput({ width: ‘100px’, height: ’25px’, mask: ‘##.##.####’, value: ‘11.05.1968’ });October 21, 2016 at 10:56 pm in reply to: I not see diference at code but error exists I not see diference at code but error exists #88402When change jqxDateTimeInput with jqxMaskedInput all OK.
Please see http://digikv.atwebpages.com/view-source.htm
You have bug in jqxDateTimeInput.October 21, 2016 at 10:12 pm in reply to: I not see diference at code but error exists I not see diference at code but error exists #88401I install last version of JQWidgets on my test server
at script folder install jquery-3.1.1.js
and get this error Error: jqxDateTimeInput: Missing reference to globalize.js. at line 587 of jqxdatetimeinput.js
please see http://digikv.atwebpages.com/view-source.htmOctober 21, 2016 at 9:06 pm in reply to: I not see diference at code but error exists I not see diference at code but error exists #88399Firebug:
TypeError: $(…).jqxMenu is not a function
$(“#jqxMenu”).jqxMenu({ width: ‘100%’, height: ’30px’}); -
AuthorPosts