cancel
Showing results for 
Search instead for 
Did you mean: 

Month click not working in date navigator

Former Member
0 Kudos

Hi,

I'm using jspDynPage. In my jsp I used a calendar and I'm

able to get date input in my DynPage by clicking on a

day and week. But for month its not working. In the iview

hand-cursor is appearing in Day & Week. But the cusrsor

doesn't get changed when I mouseover the month name. Any

idea?

Code:

<hbj:dateNavigator

...

onNavigate="myOnNavigate"

onDayClick="myOnDayClick"

onWeekClick="myOnWeekClick"

onMonthClick="myOnMonthClick"

/>

In Java:

DateNavigatorMonthClickEvent mnEvent = (DateNavigatorMonthClickEvent) event;

....

Thanks for the help.

Dhiman

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

It could be a bug with the htmlb taglib.

Try calling the java method directly in the jsp


<hbj:dateNavigator
id="myDateNavigator"
onNavigate="myOnNavigate"
onDayClick="myOnDayClick"
onWeekClick="myOnWeekClick"
>
<%
myDateNavigator.setOnWeekClick("myOnMonthClick");
%>
</hbj:dateNavigator>

Former Member
0 Kudos

Hi Dagfinn,

I've tried by the java method

<%

myDateNavigator.setOnMonthClick("myOnMonthClick");

%>

But its not working. Any other suggestion?

Thanks,

Dhiman

Former Member
0 Kudos

It is obviously a bug in the HTMLB framework. Not sure if you can update it (you probably need to patch the entire portal).

But in any way I would report it to SAP via en OSS and see what they recommend.

Former Member
0 Kudos

Thanks Dagfinn for your update. Please let me know if

you get any updates from SAP

Former Member
0 Kudos

Sorry for the slight misunderstanding.

I have not reported this to SAP, but I suggest you create an OSS to see what they say.

Cheers

Dagfinn

Former Member
0 Kudos

Hello,

I got the same problem with no clickable month with the DateNavigator. I also found no OSS entry.

Does anyone solve the problem?

Thanks,

David