jQWidgets Forums
Forum Replies Created
-
Author
-
June 23, 2022 at 12:28 pm in reply to: jqxGrid datasource rebind after select row jqxGrid datasource rebind after select row #121900
Hello Rene,
Please give us a code example so that we can be familiar with the details.
Best regards,
Svetoslav Borislavov
jQWidgets Team
https://www.jqwidgets.comJune 20, 2022 at 3:31 pm in reply to: Get Group Index From Selected Row Get Group Index From Selected Row #121882Hi Matthew,
Here is an example of getting the group`s index:
$(‘#jqxgrid’).on(‘rowselect’, function (event) {
var args = event.args;const index = getIndexOfGroupBySelectedRow(args);
//Assign the index to a variable
});function getIndexOfGroupBySelectedRow(rowArgs) {
console.log(row);
const groupsCount = $(‘#jqxgrid’).jqxGrid(‘getrootgroupscount’);let groupIndex = -1;
for (let i = 0; i < groupsCount; i++) {
const currentGroupName = $(‘#jqxgrid’).jqxGrid(‘getgroup’, i).group;
const rowData = rowArgs.row;
for (const key in rowData) {
groupIndex = i;
}
}
}Please feel free to contact me if you need any further information!
Best regards,
Svetoslav Borislavov
jQWidgets Team
https://www.jqwidgets.comJune 20, 2022 at 2:50 pm in reply to: can i first click show moth calendar can i first click show moth calendar #121881Hi,
Great news! Please feel free to contact me if you have any additional questions.
Best Regards,
Svetoslav BorislavovjQWidgets team
http://www.jqwidgets.com/Hi,
I am so happy about that, Go ahead!
Best Regards,
Svetoslav Borislavov
jQWidgets Team
https://www.jqwidgets.com/June 17, 2022 at 2:45 pm in reply to: can i first click show moth calendar can i first click show moth calendar #121869Hi,
Thanks for reporting the bug. I opened a work item and we will fix it as soon as possible.
Best Regards,
Svetoslav BorislavovjQWidgets team
http://www.jqwidgets.com/Hi,
Have a look at this demo: https://jsfiddle.net/jqwidgets/dRbAE/.
То get the things working you should update the source and the DataAdapter of the grids. After that, you can call
$(“#jqxEventGrid1”).jqxGrid(‘updatebounddata’);
$(“#jqxEventGrid2”).jqxGrid(‘updatebounddata’);Best Regards,
Svetoslav Borislavov
jQWidgets Team
https://www.jqwidgets.com/June 16, 2022 at 9:47 am in reply to: can i first click show moth calendar can i first click show moth calendar #121859Hi,
Hi! I have tried your code and it is working. I can pick only months. Here is the code:
$("#dateTimeInput").jqxDateTimeInput({ views:["year","decade"] , width: "110px" , height: "28px" ,formatString : "yyyy.MM" });
Best Regards,
Svetoslav BorislavovjQWidgets team
http://www.jqwidgets.com/June 16, 2022 at 7:39 am in reply to: Only allow setting of events every X minutes? Only allow setting of events every X minutes? #121857Hi,
You can look at https://www.htmlelements.com/demos/scheduler/timeline-day-scale. With this property, you can change the minutes` scale.
Hope this helps.
Best regards,
Svetoslav BorislavovjQWidgets Team
https://www.jqwidgets.com/ -
AuthorPosts