• Azzu3 Shaik
  • NEWBIE
  • 10 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 2
    Replies
Hi All,
Is there any way to find out the Browser name of logged user . If yes ,can any one help me out how to query it.


Thanks,
Hi All,
Is there any way to find out the logged in users ip address.Please give me some idea if any one knows it.


Thanks.
Hi All,
I am getting a wiered issue in displaying the table columns. The issue is last column of the table is getting truncate when i display the table data in PDF report. Please have a look at image for complete understanding of the issue.

User-added image


Below is my visualforce code :
<apex:repeat value="{!childObjList}" var="child">
        <table style="page-break-inside:auto ">
            <b>{!child.objectLabel}s :</b>
            <tr style="page-break-inside:avoid; page-break-after:auto">
                <apex:repeat value="{!child.fieldLabels}" var="field">
                    <th >
                            <b>{!field}</b>
                    </th>
                </apex:repeat>
            </tr>
            
            <apex:repeat value="{!child.childObjects}" var="rec">
                <tr>
                      <apex:repeat value="{!child.fieldNames}" var="fld">
                              <td >
                                <apex:outputtext value="{!rec[fld]}" escape="false"/>
                            </td>
                    </apex:repeat>
                </tr>
            </apex:repeat>
        </table><br/><br/>
    </apex:repeat>

If any one has faced the same issue,please provide the solution for it. It would be helpful to me.

Thanks,
Azmath.

 
Hi All,
Is there any way to find out the Browser name of logged user . If yes ,can any one help me out how to query it.


Thanks,
Hi All,
I am getting a wiered issue in displaying the table columns. The issue is last column of the table is getting truncate when i display the table data in PDF report. Please have a look at image for complete understanding of the issue.

User-added image


Below is my visualforce code :
<apex:repeat value="{!childObjList}" var="child">
        <table style="page-break-inside:auto ">
            <b>{!child.objectLabel}s :</b>
            <tr style="page-break-inside:avoid; page-break-after:auto">
                <apex:repeat value="{!child.fieldLabels}" var="field">
                    <th >
                            <b>{!field}</b>
                    </th>
                </apex:repeat>
            </tr>
            
            <apex:repeat value="{!child.childObjects}" var="rec">
                <tr>
                      <apex:repeat value="{!child.fieldNames}" var="fld">
                              <td >
                                <apex:outputtext value="{!rec[fld]}" escape="false"/>
                            </td>
                    </apex:repeat>
                </tr>
            </apex:repeat>
        </table><br/><br/>
    </apex:repeat>

If any one has faced the same issue,please provide the solution for it. It would be helpful to me.

Thanks,
Azmath.