Skip to main content
1-Visitor
December 5, 2011
Question

Hide Attribute

  • December 5, 2011
  • 2 replies
  • 908 views

Hello,


In our schema we have a attribute called rowsep which is available in <table>, <row>, <colspec> and <entry>. I want to hide this attribute in all elements except <entry>.


I tried the dialoghidden option in the dcf file but that will hide the attribute in all element. Is there a workaround of this.


Karthik

    2 replies

    18-Opal
    December 5, 2011
    Hi Karthik--



    You might need to write some custom code and use it as a modify_tag
    document callback. The code would need to check the current element
    name, and if it's table, row, or colspec, withdraw the control for the
    rowsep attribute.



    --Clay





    Clay Helberg

    Senior Consultant

    TerraXML


    1-Visitor
    December 5, 2011

    Okay. Thanks Clay.