c#,silverlight,visual-studio-lightswitch,3-tier,lightswitch-2012
If the IIS Server is correctly set up, you should just be able to use a browser to download and install the current version of the desktop application (with correct configuration) from it. The url format for the request is: http[s]://{servername}[:port]/{applicationname}/ If you're not sure of the application name, use...
visual-studio-2013,publish,visual-studio-lightswitch,lightswitch-2013,lightswitch-2012
Lightswitch 2012 was dead... Had to upgrade to 2013,this caused a heap of breaks, but eventually I got it publishing.
mvvm,custom-controls,silverlight-5.0,lightswitch-2012
I have found the solution to my issue. a user control only gets the screen data context if you dont explicitly specify a context for it, it will get it by default. but when i explicitly override it with my VM then the context isnt coming from the screen anymore....
visual-studio-lightswitch,lightswitch-2013,lightswitch-2012
We ended up using the following code pattern to tackle this in a fashion suitable for our requirements: - myapp.AddEditCustomer.Name_postRender = function (element, contentItem) { contentItem.dataBind("_view.isRendered", function (isRendered) { if (isRendered) { var tb = contentItem._view.underlyingControl; tb.getView().on("keyup", ".id-element", null, function (e) { tb.text = tb._textElement.val(); }); contentItem.dataBind("value", function (value) {...