SmartClient Version: SNAPSHOT_v13.1d_2024-09-03/AllModules Development Only (built 2024-09-03)
Hello, I just noticed that this settings on a Calendar:
don't seem to have an effect. You may test it in the showcase, databoundCalendar sample (a description like that of the "Inspection" event is pretty long):
the result is unchanged:
instead, monthViewProperties: {hoverWrap: false} seems to work, you may try to put a long name in some event, and the result will be:
the problem seems to be with any hover-related property
Hello, I just noticed that this settings on a Calendar:
Code:
weekViewProperties: {hoverWrap: false} dayViewProperties: {hoverWrap: false}
Code:
// using a client-only dataSource so that test data is always relative to the current date isc.DataSource.create({ ID: "eventDS", fields:[ {name:"eventId", primaryKey: true, type: "sequence"}, {name:"name"}, {name:"description"}, {name:"startDate", type: "datetime"}, {name:"endDate", type: "datetime"} ], clientOnly: true, testData: eventData }); isc.Calendar.create({ ID: "eventCalendar", weekViewProperties: {hoverWrap: false}, dayViewProperties: {hoverWrap: false}, startDate: eventData.getDataStartDate(), dataSource: eventDS, autoFetchData: true });
instead, monthViewProperties: {hoverWrap: false} seems to work, you may try to put a long name in some event, and the result will be:
the problem seems to be with any hover-related property
Comment