• Alex85
  • NEWBIE
  • 0 Points
  • Member since 2011

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 2
    Replies

HI,

I have a problem with width of a page, I have already fixed the width of components in the page, but the width of the page is still too wide and menu(logout ...) is far right.

What could I do to fix it?

 

Tanks.

Hi.

I make some calculations in javascript, becouse it's faster as waiting for response from server.

wenn I change content of inputText, it comes no even onChange and the setter of Variable will not called.

 

Here is the code:

<script>
var gesMen;
</script>
    <script>
function calcPrice(elem){
    var path = elem.id.split(":");
    var root = elem.id.replace(path[path.length-1],"");
    gesMen = 10;
    document.getElementById(root+"anzVerp").value = gesMen;
    return null;
}

</script>

 

<apex:column headerValue="Anzahl Verpackungen">
    <apex:actionregion immediate="True">
        <apex:inputText value="{!anzVerp}"
            disabled="true" id="anzVerp">
            <apex:actionsupport event="onchange" />
            <apex:param name="Position" value="{!AP.lfdNr}" assignTo="{!applylfdNr}" />
        </apex:inputText>
    </apex:actionregion>
</apex:column>

 

Thanks