function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
saleforce beesaleforce bee 

dynamci value population

<apex:pageBlockTable value="{!prd}" var="a" id="table" border="2">            

                  <apex:column headerValue="Category">

                    <apex:inputField value="{!a.Category__c}"  />

                </apex:column>

                <apex:column >

                   

                    <apex:outputtext id="dynamictext"   />

                 </apex:column > 

                <apex:column headerValue="Description">

                    <apex:inputField value="{!a.Description__c}" />

                </apex:column>

</apex:pageBlockTable>

 

In above code snippet, when we select value of Category__c some value ,dynamic help text would be displayed in the dynamictext-ouput text.... It should be ajax enabled no postback allowed

 

Pls help me how to achieve it.