Tabs inside of Dialog Model Editor Template - doesnt work

The tabs on the Dialog Mode Editor template don't work. The very first one gets highlighted and 2nd doesn't work at all.

I have a grid where I specified an editor:

edit.DialogModeEditorTemplate("MappingEditor");

and here is the code for MappingEditor.cshtml

@model CDM.CoreData.Common.TargetField

@{
    ViewBag.Title = "MappingEditor";
}

<h2>MappingEditor</h2>

<div class="cdm-tabs  left">
    <div id="tabLookup">
        <ul>
            <li><a rel='nofollow' href="#Lookup">Lookup Value</a></li>
            <li><a rel='nofollow' href="#DefaultLookup">Default Value</a></li>
        </ul>
        <div id="Lookup" style="margin: 10px">

            @Html.Partial("MappingEditTemplate", Model)
       </div>
        <div id="DefaultLookup" style="margin: 10px">
           @Html.LabelFor(model => model.Destination)
        </div>
    </div>
    @{Html.Syncfusion().Tab("tabLookup")
        .Spinner("Loading...")
        .Render();}
</div>

What am I missing??

1 Reply

AS Alan Sangeeth S Syncfusion Team January 30, 2014 08:52 AM UTC

Hi Yulia,

Thanks for using Syncfusion products.

We regret to let you know that we are unable to reproduce your issue in our end. We have created a simple sample and the same can be downloaded from below link.

Sample:

DialogTemplate.zip

Could you please send us more information about your issue or send us a sample with the issue so that we could sort out the cause of the issue and provide you a better solution quickly? The information provided would be a great help for us to resolve your issue.

Please let us know if you have any queries.

Regards,
Alan Sangeeth S


Loader.
Up arrow icon