• ramya raghava
  • NEWBIE
  • 10 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 2
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 0
    Replies
Did anyone try to override edit page of knowledge article? Is it possible to do like that.  There is a limit of 100 categories per category group I needed more than 300 articles so I thought of overriding edit page with visualforce page and instead of categories, custom picklist values. Is it feasible? please suggest a possible way to achieve my scenario.

Thanks in advance.
 
I have integrated g+ to my visualforce page and its working fine. I want to display image dynamically which is a url field in my object{!obj.image}.how to do this?


<script type="text/javascript">
        (function() {
          var po = document.createElement('script');po.type='text/javascript'; po.async = true;
          po.src = 'https://apis.google.com/js/plusone.js';
          var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
           })();
      </script>
How can i invoke a child object trigger when a parent object trigger delete action invoked?
 
I have a list of names with li tags and custom salesforce tabs with the same names. how can make a tab active when i select respected name from the list.

<apex:page>
  <li><a href="#">My Tabs</a>
        <ul>
             <li><a href="#">My First</a></li>
             <li><a href="#">My Second</a></li>
        </ul>
  </li>

<apex:tabPanel switchType="client" selectedTab="t1" id="tab_pannel">
<apex:tab label="My First" name="t1" id="tabOne">
...
</apex:tab>
<apex:tab label="My Second" name="t2" id="tabtwo">
...
</apex:tab>
</apex:tabPanel>
</apex:page>

(ex:Here when i select My First the tab My First should be active....)
How can i invoke a child object trigger when a parent object trigger delete action invoked?
 
I have a list of names with li tags and custom salesforce tabs with the same names. how can make a tab active when i select respected name from the list.

<apex:page>
  <li><a href="#">My Tabs</a>
        <ul>
             <li><a href="#">My First</a></li>
             <li><a href="#">My Second</a></li>
        </ul>
  </li>

<apex:tabPanel switchType="client" selectedTab="t1" id="tab_pannel">
<apex:tab label="My First" name="t1" id="tabOne">
...
</apex:tab>
<apex:tab label="My Second" name="t2" id="tabtwo">
...
</apex:tab>
</apex:tabPanel>
</apex:page>

(ex:Here when i select My First the tab My First should be active....)