jQWidgets Forums
Forum Replies Created
-
Author
-
March 2, 2020 at 1:17 pm in reply to: UI changes in groupby string on grouping UI changes in groupby string on grouping #108271
Hi there,
is there any update ,Thank you in Advanced.
Regards
Ganesh.November 11, 2019 at 12:27 pm in reply to: min property issue in jqxdatetimeinput on first click min property issue in jqxdatetimeinput on first click #107302Hi Hristo,
Thanks for the reply, I am using following property in my code
ref={props.refAsProp}
className={dateTimeClass}
placeHolder={“mm/dd/yy”}
width={200}
height={30}
value={LatestDate}
min={new Date(2019, 10, 6)}
allowNullDate={true}
onValueChanged={(event: any) => {setFieldValue(“LatestDate”, date);
}
}}
before calendar I have drop down list and after selected option from drop down at that time this(Calendar) field appeared .and when we try to select date first time drop down focus will close and same time calendar window also closed.August 27, 2019 at 5:52 am in reply to: groupsrenderer for multiple level access groupsrenderer for multiple level access #106588Hi there,
when I do multilevel grouping at that every time I want to show leaf node details on each group title.Thank you
GaneshHi Todor,
Thanks for the reply I need to go with the previous example posted by you. Thank you.Regards,
Ganesh.Hi Todor,
Thank for the reply and providing the exact solution, But one problem in my application is that I used selectionmode=(checkbox) and I go through your code you added one field and set it as columntype=checkbox. is there any way when onrowselect event occurs at that time my row will be highlighted and not showing checkbox true as well.Thanks,
Ganesh.Hi Todor,
Thank for the reply, Can we unselect checkbox when user click on row because in my case when the user clicks on a row at that time only selected row need to show highlighted and no checked that column because when I select the checkbox at that time the different operation will perform.Thanks,
Ganesh.Hi Todor,
Thank for the reply, I go through this example if I want to select (Select all) then How we can do this? actually in my application need to select all option as well.
Please reply.Thanks,
Ganesh.June 5, 2019 at 10:11 am in reply to: Hide sort option in the filter box Hide sort option in the filter box #105513Hi Peter
I don’t want the option in the filter box but I need sorting only on the click of grid header. is this functionality implemented or not?Thank you
Ganesh Mali.April 29, 2019 at 6:23 pm in reply to: Auto-Resize height of nested grid Auto-Resize height of nested grid #104950Thanks Peter about your response and I understand due to virtualization and performance reasons dynamic height for row details is not made available through standard options. My question is regarding work around to address this issue. In current way of implementation we loose too much of vertical space and in some case we have scroll bar.
After studying the HTML output of nested grid, it looks like divs with rowdetailsHeight in their style are already created before we render nestedgrid in them. Do we have any work around to update the style containing height in such Divs?
Thank you,
GaneshApril 19, 2019 at 6:58 am in reply to: Horizontal scrollbar position fixed to bottom Horizontal scrollbar position fixed to bottom #104849Hi Peter,
Thanks for reply But I forget to specify grid scrollbar. Currently which is come in grid but I would like to fixed at bottom when i tried to change css its effect on vertical scrollbar.Thank you,
Ganesh.April 17, 2019 at 6:25 am in reply to: Auto-Resize height of nested grid Auto-Resize height of nested grid #104799Hi Hristo,
is there updated or developed rowdetailstemplate rowdetailsheight= auto with new version or in purchase license .
Thank you,
Ganesh.April 16, 2019 at 10:21 am in reply to: Auto-Resize height of nested grid Auto-Resize height of nested grid #104793Hi Peter,
is there updated or developed rowdetailstemplate rowdetailsheight= auto with new version or in purchase license .
Thank you,
Ganesh.March 28, 2019 at 8:54 am in reply to: ongroup change date format is changed ongroup change date format is changed #104558Hi Peter stoev thank for reply . Sorry But I cant provide you example for that can you please suggest me about how I will get value of cell in
in groupchaanges. Currently I am using cellsrenderer for show proper format of data but when i group by date at that time date show in previous format.
let groupChanged = (e: any) => {
let grid= this.refs.myGrid as JqxGrid;
}
let columnns=[
{
text: ” Date”,
datafield: “Date”,
width: “130”,
cellsrenderer: daterender,
hidden: false,
filtertype: ‘custom’ as ‘custom’,
createfilterpanel: (datafield, filterPanel) => {
buildFilterPanel(filterPanel, datafield, this,source);
},
];
<JqxGrid
ref=”myGrid”
width={“100%”}onGroupschanged={groupChanged}
/>
Hi Peter thanks for reply
In a column picker i want both parent data and nested data and i want to hide when i select so how we can implement can you please provide example.
Thank you,Ganesh
Hi Hristo ,
Thanks for reply But I already used this on sorttogglestates={‘0’} -disable for all sorttogglestates={‘1’} & sorttogglestates={‘1’} – same work enable for all I want this type How disable sorting on click on column title but allow for click on arrow in jqxGrid.
In column renderer I added button and on buttonclick I want to perform some action so in columnclicked event prevent sort.
const columnClicked = (e) => {
console.log(e);
e.preventDefault(); Not working
e.stopPropagation(); Not working
}
Thank you
Ganesh -
AuthorPosts