• Resolved niktessa6

    (@niktessa6)


    im tryin show details with popup window(click button). i have a simple code:

    <!-- Trigger the modal with a button -->
    <button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#myModal">Open Modal</button>
    
    <!-- Modal -->
    <div id="myModal" class="modal fade" role="dialog">
      <div class="modal-dialog">
    
        <!-- Modal content-->
        <div class="modal-content">
          <div class="modal-header">
            <button type="button" class="close" data-dismiss="modal">&times;</button>
            <h4 class="modal-title">Modal Header</h4>
          </div>
          <div class="modal-body">
            <p>{{row.xxx}}</p>
          </div>
          <div class="modal-footer">
            <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
          </div>
        </div>
    
      </div>
    </div>

    now my problem is whichever you click on it shows the first row value.

    • This topic was modified 4 years, 9 months ago by niktessa6.
    • This topic was modified 4 years, 9 months ago by niktessa6.
Viewing 1 replies (of 1 total)
  • Plugin Support Syed Numan

    (@annuman)

    Hello @niktessa6,

    This is not a default feature of the ninja table and you are doing it with custom code. So, we can’t say anything regarding this. As any HTML code is supported by the Transform Value, so if you write the right code it should have worked.

    Thanks

Viewing 1 replies (of 1 total)

The topic ‘Popup Transform Value Problem’ is closed to new replies.