jQWidgets Forums
Forum Replies Created
-
Author
-
January 6, 2016 at 8:44 pm in reply to: rowSelect event.args.row is undefined, but rowClick event.args.row is valid rowSelect event.args.row is undefined, but rowClick event.args.row is valid #80156
Hi Peter,
Based on your suggestion, using the methods now to get row data. Thank you.
//set selectionMode to singleRow And
var selection = $(“#jqxGridJobCycles”).jqxTreeGrid(‘getSelection’);
for (var i = 0; i < selection.length; i++) {
var rowData = selection[i];
}if (rowData.level == 0) //Parent Row
{
category = rowData.data.CategoryType;
}
else // child rows
{
var args = event.args;
var row = args.row;
category = row.CategoryType
}July 1, 2015 at 3:22 pm in reply to: 1st day of month background CSS 1st day of month background CSS #73259Thank you.
June 19, 2015 at 7:37 pm in reply to: Remove Month navigation links Remove Month navigation links #72772Thank you. In your demo, I am seeing that July 1st is being selected instead of June 1st. Also, I am able to navigate to next month (August) through I am not able pick any date under August.
$(‘#jqxCalendar ‘).jqxCalendar(‘setDate’, new Date(2015, 6, 1));
$(‘#jqxCalendar’).jqxCalendar(‘setMinDate’, new Date(2015, 6, 1));
$(‘#jqxCalendar’).jqxCalendar(‘setMaxDate’, new Date(2015, 6, 31));June 19, 2015 at 7:35 pm in reply to: Remove default current date selection Remove default current date selection #72771Thank you. In your demo, current Date is not highlighted upon initialization, any reason for this? because of this I am not able to validate removing the highlighting.
In every demo of yours, the calendars are plain without any pre-selected date. I tried IE & Chrome, they are looking same. In my code, every calendar is being initialized with current date highlighted.
$(“#jqxCalJan”).jqxCalendar({ width: ‘100%’, height: ‘100%’, theme: theme, selectionMode: ‘default’, readOnly: true, showOtherMonthDays: false, enableWeekend: true, enableViews: false });
June 19, 2015 at 7:21 pm in reply to: Styling background color of special date cell Styling background color of special date cell #72770Thank you so much. Could you please share if there is way to use an Image file for the background?
-
AuthorPosts