Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
How to disable interactivity for specific columns
Ilalaina
Hi all,
I'm using Birt Designer Pro 11, and I'm designing a report which will be available on IPortal, displaying a textboxes on a column for saving user input.
My question is how to disable interactivity (by Jsapi if possible) on a specific colum, cause I'm using JQuery datepicker on these textboxes, and it's not working until I disable interactivity.
Thanks for your help.
Ilalaina.
Find more posts tagged with
Comments
averma
Hi IIalaina,
TextItem control does not offer any interactivity so it should not impact your javascripts events. I would recommend you to debug this further to see whats causing the conflict.
Ashwini
Ilalaina
Hi Averma, thanks for the reply.
It's because when I click on the cell the interactivity with the column is enabled. Do you see what I mean, the column is highlighted in gray and the options in the header appears ( filtering, sorting ...)
The first time I click the datepicker is fired, everything is OK, but the interactivity is also enabled, so the column is like overlayed, until I click anywhere else on the table.
averma
Unfortunately it is not possible to enable/disable interactivity selectively on report elements, but you can call a script to disable IV when the mouse is clicked inside the text box. To disable IV get a handle to actuate viewer and call the following script:<br />
<br />
<pre class='_prettyXprint _lang-auto _linenums:0'>
viewer.disableIV();
viewer.submit();
</pre>