Jump to content
We've recently updated our Privacy Statement, available here ×

Balraj

Members
  • Posts

    50
  • Joined

  • Last visited

Community Answers

  1. Balraj's post in Text Field with "Stretch with overflow" generates vertical margin. was marked as the answer   
    I think, that extra space is a Report Design Issue, please review your report design. If you observe that extra space is there in the image that you posted earlier. So it might be a design issue.
    Best Regards,
    JasperExplorer
  2. Balraj's post in Map Internal Role to an External Role with Token Based Authentication was marked as the answer   
    Hi All, I resolved it. we've to place "permittedRolesRegex" property in comments, in the XML File
    <!--<property name="permittedRolesRegex"> <list> <value>JRS_.*</value> <value>EXT_.*</value> </list> </property>-->[/code]Best Regards,
    JasperExplorer
     
  3. Balraj's post in Customize search results filters role based was marked as the answer   
    Well I got the Answer, by adding an extra bean to the "id=SuperUserRoleAccessList"
    <!--Custom tag --> <util:list id="SuperUserRoleAccessList"> <bean class="com.jaspersoft.ji.search.common.ProRoleAccess"> <property name="roleName" value="ROLE_SUPERUSER"/> <property name="tenantId"> <null/> </property> </bean> <bean class="com.jaspersoft.ji.search.common.ProRoleAccess"> <property name="roleName" value="ROLE_ADMINISTRATOR"/> <property name="tenantId"> <null/> </property> </bean> </util:list><!-- End of custom tag -->[/code]Cheers :D
     
  4. Balraj's post in Hide Right Click options on Report based on ROLE was marked as the answer   
    I got the answer:
    Step1: Navigate to the path “JRSwebappsjasperserver-proWEB-INFactionModel-search.xml”
    Step2: Find Context tag with name=”resource_menu”
    Step3: Add condition to hide the “Run in Background”option based on User Role
    <condition test="checkModeAndDevice" testArgs="browse,search">
    <condition test="checkAuthenticationRoles" testArgs="ROLE_ADMINISTRATOR"> <!-- Hide run-in background for non-admin users  -->
    <simpleAction labelKey="RM_BUTTON_RUN_IN_BACKGROUND" action="invokeRedirectAction" actionArgs="RunInBackgroundResourceAction" clientTest="canBeRunInBackground" className="up"/>
    </condition>                                      
    </condition>
    Cheers :D
     
  5. Balraj's post in Stretch with Overflow Table component issue was marked as the answer   
    Fixed it by using the answer from the below link
    http://community.jaspersoft.com/questions/843465/report-element-auto-height-table-component-detailcell
    Cheers :)
     
  6. Balraj's post in Fetch User Roles using Groovy Expression to implement Domain Security was marked as the answer   
    Got it, the answer is
    <filterExpression>testCurrentUserRoles(Transaction100_MyTable.RoleName)</filterExpression>[/code]Hope it helps someone..
    Cheers :)
  7. Balraj's post in XLSx Export creating a blank First sheet was marked as the answer   
    Got the Answer
    Specify this property at Report Level and Group Level "net.sf.jasperreports.export.xls.one.page.per.sheet" = "true" and
    Check mark the Group with "Start New Page"
    Cheers :D
     
     
  8. Balraj's post in XLSX Export Page Header in New Sheet was marked as the answer   
    Hi I solved it, by using "net.sf.jasperreports.export.xls.break.before.row" = true
    on all the elements in the PageHeader band
    Thanks for Support :)
  9. Balraj's post in Different Datasets using Different WebService Datasource Data Adapter was marked as the answer   
    Got Answer from this url http://community.jaspersoft.com/wiki/webservice-datasource-documentation
×
×
  • Create New...