jQWidgets Forums
Forum Replies Created
-
Author
-
October 14, 2014 at 11:01 am in reply to: i JQXpanel scroll Need to place at the end of the position. i JQXpanel scroll Need to place at the end of the position. #61098
Sorry.
if Checked:
$(‘#jqxPanel’).jqxPanel(‘scrollTo’,
$(“#jqxPanel”).jqxPanel(‘getHScrollPosition’),
$(‘#jqxPanel’).jqxPanel(‘getVScrollPosition’)+20);if unChecked:
$(‘#jqxPanel’).jqxPanel(‘scrollTo’,
$(“#jqxPanel”).jqxPanel(‘getHScrollPosition’),
$(‘#jqxPanel’).jqxPanel(‘getVScrollPosition’)-20);Any answers please??
Thanks in advancefunction getAdapter() {
var source =
{
datatype: “json”,
datafields:
[
{ name: ‘Type’, type: ‘string’ },
{ name: ‘Date’, type: ‘string’},
{ name: ‘IsSecure’, type: ‘string’ }],
url: urlGetAllJobs,
async: true
};$grid = $(“#jqxgrid_joblist”);
$grid.jqxGrid({
width: ‘100%’,
height: getInnerHeight(),
columnsheight: columnsheight,
rowsheight:rowsheight,
scrollbarsize: 8,
source: getAdapter(),
theme: theme,
columnsresize: true,
sortable: true,
columnsreorder: true,
enablehover: true,
enabletooltips: true,
showemptyrow: false,
showtoolbar: false,
sorttogglestates: 1,
groupable: false,columns:
{
text: ”, datafield: ‘Type’, filtertype: ‘checkedlist’,
renderer: headerRenderer,
cellsrenderer: imageRenderer,
width: ‘5%’,
resizable: false
},
{
text: ‘date;, datafield: ‘Submission’,
renderer: columnsHeaderStyle,
cellsrenderer: rowsCellStyle,
filtertype: ‘date’,
width: ‘15%’,
}
});here date is in string, so,i get unexpected results. I need to sort it in date format.
Hi peter,
$(‘#jqxGrid’).jqxGrid({ sortable: false});
Its use for the whole grid, but i want a column to be sort as false or disable the sort. Please help me.
Thanks in advance.
Hi team,
In grid, How to disable the sort for a column only?
Thanks in advance.Thanks peter,
From this we can able to disable the third click option.
Is there any other way to control the Initial data load and third click data load?
Thanks for reply.
But for me the situation is different, initially the whole website button width size is 100px. once the text increased for a button, that button only need to increase the width.
I will try to solve this width issue in Jquery, by using the length of button to increase the button width.
Anyway thanks again.
March 18, 2014 at 5:48 am in reply to: how to change the arrow icon for jqxnumberinput? how to change the arrow icon for jqxnumberinput? #51225It works… Thanks Dimitar.
March 17, 2014 at 2:04 pm in reply to: how to change the arrow icon for jqxnumberinput? how to change the arrow icon for jqxnumberinput? #51198Hi Dimitar,
This idea will work for a control only by using ID, i have more spin controls in different pages. So i need a global spin control classname like “jqx-checkbox” or “jqx-radiobutton”.
Is there any global classname, do you have for spin control(jqxnumberinput)?March 12, 2014 at 11:19 am in reply to: Css – Hover, Selected and Active Css – Hover, Selected and Active #50924ya ok. thanks peter
March 12, 2014 at 10:17 am in reply to: Css – Hover, Selected and Active Css – Hover, Selected and Active #50911Hi peter,
Thanks, it works. I used this classname for checkbox “.jqx-checkbox-xerox .jqx-fill-state-focus”, when checkbox on mouse pressed it will take this classname and get my css styles.
So “.jqx-fill-state-focus” apply to checkBox, it means – when it is focused and last focused item. Am i correct?Thanks
March 12, 2014 at 5:32 am in reply to: Css – Hover, Selected and Active Css – Hover, Selected and Active #50869hi peter,
ya i saw this too, but “jqx-fill-state-focus” or “jqx-fill-state-hover” these are common classname for all controls. how can i use this only on radiobutton? or checkbox?
if i want to use this focus “jqx-fill-state-focus” classname for radiobutton or checkbox, it should be like “jqx-radiobutton-fill-state-focus” or “jqx-checkbox-fill-state-focus”. Will you understand what am i saying?
March 11, 2014 at 10:01 am in reply to: Css – Hover, Selected and Active Css – Hover, Selected and Active #50837Hi peter,
Whatever u mentioned documents i already referred and these are classnames currently jqwidgets have for radiobutton:
.jqx-radiobutton
.jqx-radiobutton-default
.jqx-radiobutton-hover
.jqx-radiobutton-disabled
.jqx-radiobutton-disabled-box
.jqx-radiobutton-check-checked
.jqx-radiobutton-check-disabled
.jqx-radiobutton-check-indeterminate
.jqx-radiobutton-check-indeterminate-disabled
.jqx-radiobutton-rtlHere i am asking the classname like,
1) radiobutton has checked with hover?
2) radiobutton onpress state?
3) radiobutton has checked with hover onpress state?Please help us, how to achieve these states in jqWidgets?
Is there any way to get the controls name(buttons, checkbox, option, slider, dropdown) by using the Div id?
yes peter, it will work fine in chrome and mozilla browser. But in IE it wont work… :-(, that’s the issue.
-
AuthorPosts