1

I have been searching for some plugin/extension/code which could help me generate a collapsible list. Even though visual studio provides a plugin for the same, the developer specifies that the plugin can only be used for screens with intrinsic(created in lightswitch) data sources LsCollapsibleList

I have also tried using the jquery mobile theme for the same and am able to get the zip file.

The main problem is that I do not know which files to use and where to reference them.

Any help on the topic is welcome.

Thank you in advance

1 Answers1

0

have you tried following this:

http://lightswitchhelpwebsite.com/Blog/tabid/61/EntryId/3246/Creating-Advanced-LightSwitch-HTML-Screen-Templates.aspx

this website is great for things like this, and theres also a downloadable version of the project so you can see how it all works:

http://silverlight.adefwebserver.com/Files/LightSwitch/LsCollapsibleList.zip

before referencing them, the best way is to drag the css file into the Content folder (within the visual studio environment), and the js file into the Scripts folder. This means visual studio knows the files are there within this specific project.

Finally, you would reference both the css file and the js files in the default.htm file which is located with the HTML Client structure... for example:

<link rel="stylesheet" type="text/css" href="Content/CollapsibleLists.css"/>

<script type="text/javascript" src="Scripts/Generated/CollapsibleList.js"></script>
Crezzer7
  • 2,265
  • 6
  • 32
  • 63